diff options
author | juraj.linkes <juraj.linkes@pantheon.tech> | 2018-09-19 14:59:43 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-27 12:08:02 +0000 |
commit | 8e26f6dbcf5a61fa2922f57edf04e1de18cdd4fc (patch) | |
tree | af5c4219863a208848f47f483443fe2b0d1825e1 /test/test_bihash.py | |
parent | 74447d4fc5f5ff1bbde8c0cab26b3aade0548da4 (diff) |
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 <juraj.linkes@pantheon.tech>
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 """ |