diff options
Diffstat (limited to 'test/test_bihash.py')
-rw-r--r-- | test/test_bihash.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_bihash.py b/test/test_bihash.py index a5cf065735f..ff2a898dae3 100644 --- a/test/test_bihash.py +++ b/test/test_bihash.py @@ -6,18 +6,18 @@ from framework import VppTestCase, VppTestRunner from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath -class TestTCP(VppTestCase): +class TestBihash(VppTestCase): """ Bihash Test Cases """ @classmethod def setUpClass(cls): - super(TestTCP, cls).setUpClass() + super(TestBihash, cls).setUpClass() def setUp(self): - super(TestTCP, self).setUp() + super(TestBihash, self).setUp() def tearDown(self): - super(TestTCP, self).tearDown() + super(TestBihash, self).tearDown() def test_bihash_unittest(self): """ Bihash Add/Del Test """ |