tests: remove bond, pipe, session and api_namespace from vpp_papi_provider
Type: refactor Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com> Change-Id: I5052fc1fd82b5d17c1ed66fee5185addf60b9eb6
This commit is contained in:
@ -20,7 +20,7 @@ class TestSession(VppTestCase):
|
||||
def setUp(self):
|
||||
super(TestSession, self).setUp()
|
||||
|
||||
self.vapi.session_enable_disable(is_enabled=1)
|
||||
self.vapi.session_enable_disable(is_enable=1)
|
||||
self.create_loopback_interfaces(2)
|
||||
|
||||
table_id = 0
|
||||
@ -49,7 +49,7 @@ class TestSession(VppTestCase):
|
||||
i.admin_down()
|
||||
|
||||
super(TestSession, self).tearDown()
|
||||
self.vapi.session_enable_disable(is_enabled=1)
|
||||
self.vapi.session_enable_disable(is_enable=1)
|
||||
|
||||
def test_segment_manager_alloc(self):
|
||||
""" Session Segment Manager Multiple Segment Allocation """
|
||||
@ -102,7 +102,7 @@ class TestSessionUnitTests(VppTestCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestSessionUnitTests, self).setUp()
|
||||
self.vapi.session_enable_disable(is_enabled=1)
|
||||
self.vapi.session_enable_disable(is_enable=1)
|
||||
|
||||
def test_session(self):
|
||||
""" Session Unit Tests """
|
||||
@ -114,7 +114,7 @@ class TestSessionUnitTests(VppTestCase):
|
||||
|
||||
def tearDown(self):
|
||||
super(TestSessionUnitTests, self).tearDown()
|
||||
self.vapi.session_enable_disable(is_enabled=0)
|
||||
self.vapi.session_enable_disable(is_enable=0)
|
||||
|
||||
|
||||
class TestSvmFifoUnitTests(VppTestCase):
|
||||
|
Reference in New Issue
Block a user