From 741865bb76b69430eae8966f56bb657bf16a5a26 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Tue, 27 Nov 2018 06:01:22 -0800 Subject: [PATCH] Trivial: test/test_ipip.py First argument of a method should be named 'self'. Change-Id: I7260916ce9d96108202b650dbf7ac8ce4b3aafdc Signed-off-by: Paul Vinciguerra --- test/test_ipip.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_ipip.py b/test/test_ipip.py index b7a0179957b..989330faa6f 100644 --- a/test/test_ipip.py +++ b/test/test_ipip.py @@ -41,9 +41,9 @@ class TestIPIP(VppTestCase): cls.create_pg_interfaces(range(2)) cls.interfaces = list(cls.pg_interfaces) - def setUp(cls): - super(TestIPIP, cls).setUp() - for i in cls.interfaces: + def setUp(self): + super(TestIPIP, self).setUp() + for i in self.interfaces: i.admin_up() i.config_ip4() i.config_ip6() -- 2.16.6