diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-10 10:04:23 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-03-11 08:11:16 +0000 |
commit | a7427ec6f86cbeba7594f98e41fecab291d66b73 (patch) | |
tree | a1fe195ee4ccdecd420cd908c0752a33ebf3aa19 /test/test_cdp.py | |
parent | 0f6602cb246894ea98253e16aae198094bf78694 (diff) |
VPP-1508: Use scapy.compat to manage packet level library differences.
Change-Id: Icdf6abc9e53d33b26fd1d531c7dda6be0bb9cb55
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_cdp.py')
-rw-r--r-- | test/test_cdp.py | 4 |
1 files changed, 4 insertions, 0 deletions
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") |