VPP-1508: Tests: Fix vpp_api struct.error under py3.
Fix struct.error: expected bytes object got <class 'str'> Change-Id: I837ae6e97e44c789a9372677151b157956525334 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:

committed by
Ole Trøan

parent
eb9a27f247
commit
22ab6f7cbb
@ -33,9 +33,9 @@ class TestSession(VppTestCase):
|
||||
table_id += 1
|
||||
|
||||
# Configure namespaces
|
||||
self.vapi.app_namespace_add_del(namespace_id="0",
|
||||
self.vapi.app_namespace_add_del(namespace_id=b"0",
|
||||
sw_if_index=self.loop0.sw_if_index)
|
||||
self.vapi.app_namespace_add_del(namespace_id="1",
|
||||
self.vapi.app_namespace_add_del(namespace_id=b"1",
|
||||
sw_if_index=self.loop1.sw_if_index)
|
||||
|
||||
def tearDown(self):
|
||||
|
Reference in New Issue
Block a user