summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestServer/TestPlugins
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/Testsrc/Testlib/TestServer/TestPlugins')
-rw-r--r--testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestACL.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestACL.py b/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestACL.py
index e457ca7c1..86a960701 100644
--- a/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestACL.py
+++ b/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestACL.py
@@ -209,7 +209,8 @@ class TestACL(TestPlugin, TestClientACLs):
def test_check_acl_ip(self):
acl = self.get_obj()
acl.ip_acls = Mock()
- self.assertEqual(acl.check_acl_ip("192.168.1.10", "ACL.test"),
+ self.assertEqual(acl.check_acl_ip(("192.168.1.10", "12345"),
+ "ACL.test"),
acl.ip_acls.check_acl.return_value)
acl.ip_acls.check_acl.assert_called_with("192.168.1.10", "ACL.test")