From df46cd4604c4dba5558c83fc6a297aa1a6d80a00 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 18 Sep 2019 12:01:07 +0200 Subject: [PATCH] fix assert --- 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 056e0f7..7af067a 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -31,4 +31,4 @@ def test_iptables_default_rules(host): ] rules = host.iptables.rules(chain="INPUT") - assertItemsEqual(defaults, rules) + assert defaults == rules