From 8e26f6dbcf5a61fa2922f57edf04e1de18cdd4fc Mon Sep 17 00:00:00 2001 From: "juraj.linkes" Date: Wed, 19 Sep 2018 14:59:43 +0200 Subject: Test typo fixes Renamed one acl testcase class which was copy-pasted and fixed one inheritance issue. Renamed one bihash testcase class. Change-Id: I70d911ee7872d8d9ddba96c7f721dd099f0152f7 Signed-off-by: juraj.linkes --- test/test_bihash.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/test_bihash.py') 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 """ -- cgit 1.2.3-korg