diff options
Diffstat (limited to 'test/test_bond.py')
-rw-r--r-- | test/test_bond.py | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/test/test_bond.py b/test/test_bond.py index b54a1f1deb5..e354601ca91 100644 --- a/test/test_bond.py +++ b/test/test_bond.py @@ -136,19 +136,11 @@ class TestBondInterface(VppTestCase): found = 1 self.assertEqual(found, 1) - # pg0 tx bytes = 142 - intfs = self.vapi.cli("show interface pg0").split("\n") - found = 0 - for intf in intfs: - if "tx bytes" in intf and "142" in intf: - found = 1 - self.assertEqual(found, 1) - - # pg0 tx bytes = 142 - intfs = self.vapi.cli("show interface pg1").split("\n") + # BondEthernet0 tx bytes = 284 + intfs = self.vapi.cli("show interface BondEthernet0").split("\n") found = 0 for intf in intfs: - if "tx bytes" in intf and "142" in intf: + if "tx bytes" in intf and "284" in intf: found = 1 self.assertEqual(found, 1) |