From 22674295747965759806231c8e5beb4b1d7fa96a Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Mon, 21 Oct 2019 18:59:11 +0200 Subject: bier: tests support python3 Type: fix Signed-off-by: Ole Troan Change-Id: I3cf5295f1a85579a66ba38ca1f74678b45474959 --- test/test_bier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_bier.py b/test/test_bier.py index 793c8ca0362..b188c364a7a 100644 --- a/test/test_bier.py +++ b/test/test_bier.py @@ -167,7 +167,7 @@ class TestBier(VppTestCase): byte_val = scapy.compat.chb(1 << (bp - 1) % 8) byte_pos = n_bytes - (((bp - 1) // 8) + 1) byte_array[byte_pos] = byte_val - bitstring = ''.join([scapy.compat.chb(x) for x in byte_array]) + bitstring = b''.join([scapy.compat.chb(x) for x in byte_array]) self.assertEqual(len(bitstring), len(bier_hdr.BitString)) self.assertEqual(bitstring, bier_hdr.BitString) -- cgit 1.2.3-korg