diff options
author | snaramre <snaramre@cisco.com> | 2019-12-13 23:39:35 +0000 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-12-14 22:14:12 +0000 |
commit | 5d4b8912d2fe186b4fb920a72b3a2f7b556f4e7d (patch) | |
tree | 4530f71a783679e3566ed501471cbad481c128d7 /test/test_bier.py | |
parent | aa72578637e2a346ee845545b2e26aad83e12192 (diff) |
tests: changes for scapy 2.4.3 migration
Type: fix
Change-Id: I7e041b666dabd90df23a920a1f1d99db4c10ddfe
Signed-off-by: snaramre <snaramre@cisco.com>
Diffstat (limited to 'test/test_bier.py')
-rw-r--r-- | test/test_bier.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_bier.py b/test/test_bier.py index b02014daa33..1c58ee58bd3 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 = b''.join([scapy.compat.chb(x) for x in byte_array]) + bitstring = b''.join(byte_array) self.assertEqual(len(bitstring), len(bier_hdr.BitString)) self.assertEqual(bitstring, bier_hdr.BitString) |