diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-11-24 21:57:08 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-11-25 08:41:08 +0000 |
commit | c29a0ea6900672afe37a995fb2c18490074bb04a (patch) | |
tree | 5dcdc6b71b87df9fbbaf124e63085c78311221e5 | |
parent | 0c79453101405245b8a4c8692cb6c1e72cb0ee63 (diff) |
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>
-rw-r--r-- | test/test_acl_plugin_conns.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test_acl_plugin_conns.py b/test/test_acl_plugin_conns.py index ce02a1d3a22..ea643e04709 100644 --- a/test/test_acl_plugin_conns.py +++ b/test/test_acl_plugin_conns.py @@ -129,13 +129,13 @@ class ACLPluginConnTestCase(VppTestCase): """ ACL plugin connection-oriented extended testcases """ @classmethod - def setUpClass(self): - super(ACLPluginConnTestCase, self).setUpClass() + def setUpClass(cls): + super(ACLPluginConnTestCase, cls).setUpClass() # 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" - self.logger.info(self.vapi.cli(cmd)) - for i in self.pg_interfaces: + cls.logger.info(cls.vapi.cli(cmd)) + for i in cls.pg_interfaces: i.admin_up() i.config_ip4() i.config_ip6() |