Fix typo in test/test_acl_plugin_conns.py

first argument of a classmethod should be named 'cls'

Change-Id: I1462be1edbfd42cbc6ad3f93d73f23b70d95e70c
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
2018-11-24 21:57:08 -08:00
committed by Ole Trøan
parent 0c79453101
commit c29a0ea690

View File

@ -129,13 +129,13 @@ class ACLPluginConnTestCase(VppTestCase):
""" ACL plugin connection-oriented extended testcases """ """ ACL plugin connection-oriented extended testcases """
@classmethod @classmethod
def setUpClass(self): def setUpClass(cls):
super(ACLPluginConnTestCase, self).setUpClass() super(ACLPluginConnTestCase, cls).setUpClass()
# create pg0 and pg1 # create pg0 and pg1
self.create_pg_interfaces(range(2)) cls.create_pg_interfaces(range(2))
cmd = "set acl-plugin session table event-trace 1" cmd = "set acl-plugin session table event-trace 1"
self.logger.info(self.vapi.cli(cmd)) cls.logger.info(cls.vapi.cli(cmd))
for i in self.pg_interfaces: for i in cls.pg_interfaces:
i.admin_up() i.admin_up()
i.config_ip4() i.config_ip4()
i.config_ip6() i.config_ip6()