From b85a3ab8a0bede49f0b38bb47a3e091e4b98d872 Mon Sep 17 00:00:00 2001 From: David Murphy < dmurphy@saltstack.com> Date: Fri, 14 Jul 2023 15:01:42 -0600 Subject: [PATCH] Removed extraous logging from debugging --- tests/pytests/unit/daemons/masterapi/test_local_funcs.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/pytests/unit/daemons/masterapi/test_local_funcs.py b/tests/pytests/unit/daemons/masterapi/test_local_funcs.py index 2edb21a6a59..06e80f7be83 100644 --- a/tests/pytests/unit/daemons/masterapi/test_local_funcs.py +++ b/tests/pytests/unit/daemons/masterapi/test_local_funcs.py @@ -1,5 +1,3 @@ -import logging - import pytest import salt.config @@ -7,8 +5,6 @@ import salt.daemons.masterapi as masterapi import salt.utils.platform from tests.support.mock import MagicMock, patch -log = logging.getLogger(__name__) - pytestmark = [ pytest.mark.slow_test, ]