diff options
Diffstat (limited to 'test/test_bond.py')
-rw-r--r-- | test/test_bond.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_bond.py b/test/test_bond.py index a888993584b..03f0eea4c7e 100644 --- a/test/test_bond.py +++ b/test/test_bond.py @@ -40,8 +40,9 @@ class TestBondInterface(VppTestCase): def tearDown(self): super(TestBondInterface, self).tearDown() - if not self.vpp_dead: - self.logger.info(self.vapi.ppcli("show interface")) + + def show_commands_at_teardown(self): + self.logger.info(self.vapi.ppcli("show interface")) def test_bond_traffic(self): """ Bond traffic test """ |