diff options
Diffstat (limited to 'test/test_pppoe.py')
-rw-r--r-- | test/test_pppoe.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_pppoe.py b/test/test_pppoe.py index b6a1eef4b80..5c8495fed98 100644 --- a/test/test_pppoe.py +++ b/test/test_pppoe.py @@ -25,6 +25,10 @@ class TestPPPoE(VppTestCase): cls.dst_ip = "100.1.1.100" cls.dst_ipn = socket.inet_pton(socket.AF_INET, cls.dst_ip) + @classmethod + def tearDownClass(cls): + super(TestPPPoE, cls).tearDownClass() + def setUp(self): super(TestPPPoE, self).setUp() |