From: Paul Vinciguerra Date: Sun, 25 Nov 2018 06:02:58 +0000 (-0800) Subject: Fix Typo: test/test_mtu.py X-Git-Tag: v19.04-rc0~331 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=0c79453101405245b8a4c8692cb6c1e72cb0ee63 Fix Typo: test/test_mtu.py first argument of a method should be named 'self'. Change-Id: Iab84a333baba9b9dfb6ffd6da66df4da331a6b11 Signed-off-by: Paul Vinciguerra --- diff --git a/test/test_mtu.py b/test/test_mtu.py index e9b4ffed9c1..57d56001ee2 100644 --- a/test/test_mtu.py +++ b/test/test_mtu.py @@ -46,9 +46,9 @@ class TestMTU(VppTestCase): cls.create_pg_interfaces(range(2)) cls.interfaces = list(cls.pg_interfaces) - def setUp(cls): - super(TestMTU, cls).setUp() - for i in cls.interfaces: + def setUp(self): + super(TestMTU, self).setUp() + for i in self.interfaces: i.admin_up() i.config_ip4() i.config_ip6()