From 5773d40b7cf5084ab75a96869e9f1c08b9c05a0c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 18 Sep 2019 12:53:57 +0200 Subject: [PATCH] fix arguments --- molecule/ec2-centos-7/tests/test_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/ec2-centos-7/tests/test_default.py b/molecule/ec2-centos-7/tests/test_default.py index 7af067a..86313ed 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -30,5 +30,5 @@ def test_iptables_default_rules(host): "-A INPUT -j REJECT" ] - rules = host.iptables.rules(chain="INPUT") + rules = host.iptables.rules("filter", "INPUT") assert defaults == rules