geneve: tests support python3

Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I0ff4d58c181b2bdf483b8b039ad005c2a4915aa8
This commit is contained in:
Ole Troan
2019-10-21 21:03:39 +02:00
committed by Andrew Yourtchenko
parent f6dee6c8ba
commit 6769473303

View File

@@ -137,7 +137,7 @@ class TestGeneve(BridgeDomain, VppTestCase):
ip_range_end = ip_range_start + n_distinct_dst_tunnels
for dest_ip4 in ip4_range(cls.mcast_ip4, ip_range_start,
ip_range_end):
vni = bytearray(dest_ip4)[3]
vni = int(dest_ip4.split('.')[3])
cls.vapi.geneve_add_del_tunnel(local_address=cls.pg0.local_ip4,
remote_address=dest_ip4,
mcast_sw_if_index=1, is_add=is_add,