diff --git a/test/infamy/netconf.py b/test/infamy/netconf.py index 68eb2265..6fa08496 100644 --- a/test/infamy/netconf.py +++ b/test/infamy/netconf.py @@ -22,7 +22,6 @@ from . import env, netutil def netconf_syn(addr): if netutil.tcp_port_is_open(addr, 830): - print(f"{addr} answers to TCP connections on port 830 (NETCONF)") return True else: return False diff --git a/test/infamy/restconf.py b/test/infamy/restconf.py index 63775e39..44d9de04 100644 --- a/test/infamy/restconf.py +++ b/test/infamy/restconf.py @@ -101,7 +101,6 @@ def restconf_reachable(neigh, password): response = requests_workaround_get(url, headers=headers, auth=auth, verify=False) if response.status_code == 200: - print(f"{neigh} answers to TCP connections on port 443 (RESTCONF)") return True except: return False