Remove un-needed print statments

This commit is contained in:
Daniel A. Wozniak 2024-06-03 13:08:46 -07:00 committed by Daniel Wozniak
parent 9d24b79637
commit c408cddfaf

View file

@ -105,7 +105,6 @@ class ReqServerChannelProcess(salt.utils.process.SignalHandlingProcess):
@pytest.fixture
def req_server_channel(salt_master, req_channel_crypt):
print(f"master pub {salt_master.config['publish_signing_algorithm']}")
req_server_channel_process = ReqServerChannelProcess(
salt_master.config.copy(), req_channel_crypt
)
@ -129,7 +128,6 @@ def req_channel_crypt(request):
@pytest.fixture
def push_channel(req_server_channel, salt_minion, req_channel_crypt):
print(f"minion encryption {salt_minion.config['encryption_algorithm']}")
with salt.channel.client.ReqChannel.factory(
salt_minion.config, crypt=req_channel_crypt
) as _req_channel: