diff --git a/test/backends/iptables/test_iptables.py b/test/backends/iptables/test_iptables.py index 3595acea..a04cfb5f 100644 --- a/test/backends/iptables/test_iptables.py +++ b/test/backends/iptables/test_iptables.py @@ -201,7 +201,6 @@ def testLogging(self): #Check if our logging chain is in place output = run_cmd("iptables", "-L", LOGGING_CHAIN_NAME) - print(output) rules = [line for line in output.split("\n") if 'anywhere' in line] #2 rules: one logging, one generic drop @@ -210,7 +209,7 @@ def testLogging(self): #Check if the logging chain is called from the main chain output = run_cmd("iptables", "-L", CHAIN_NAME) - + print(output) rules = [line for line in output.split("\n") if LOGGING_CHAIN_NAME in line] self.assertEqual(len(rules), 1)