From a7427ec6f86cbeba7594f98e41fecab291d66b73 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Sun, 10 Mar 2019 10:04:23 -0700 Subject: VPP-1508: Use scapy.compat to manage packet level library differences. Change-Id: Icdf6abc9e53d33b26fd1d531c7dda6be0bb9cb55 Signed-off-by: Paul Vinciguerra --- test/test_cdp.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/test_cdp.py') diff --git a/test/test_cdp.py b/test/test_cdp.py index e8ced7cb796..1996c5141f0 100644 --- a/test/test_cdp.py +++ b/test/test_cdp.py @@ -71,6 +71,10 @@ class TestCDP(VppTestCase): super(TestCDP, cls).tearDownClass() raise + @classmethod + def tearDownClass(cls): + super(TestCDP, cls).tearDownClass() + def test_enable_cdp(self): self.logger.info(self.vapi.cli("cdp enable")) ret = self.vapi.cli("show cdp") -- cgit 1.2.3-korg