VPP-1508: Python3 tests. Explicitly specify string formatting.
.format() doesn't understand what to do with binary values by default. Specify that we expect coersion to string. Change-Id: Ic4b697f70852124dc85ab231f76b7934d0d71f4d Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:

committed by
Ole Trøan

parent
4a4cea02ef
commit
ea2450fa2d
@ -1224,7 +1224,7 @@ class TestSRv6(VppTestCase):
|
||||
|
||||
# add classify table
|
||||
# mask on dst ip address prefix a7::/8
|
||||
mask = '{:0<16}'.format('ff')
|
||||
mask = '{!s:0<16}'.format('ff')
|
||||
r = self.vapi.classify_add_del_table(
|
||||
1,
|
||||
binascii.unhexlify(mask),
|
||||
@ -1239,7 +1239,7 @@ class TestSRv6(VppTestCase):
|
||||
'sr-pl-rewrite-insert')
|
||||
inacl_next_node_index = r.node_index
|
||||
|
||||
match = '{:0<16}'.format('a7')
|
||||
match = '{!s:0<16}'.format('a7')
|
||||
r = self.vapi.classify_add_del_session(
|
||||
1,
|
||||
table_index,
|
||||
|
Reference in New Issue
Block a user