geneve: tests support python3 90/22890/3
authorOle Troan <ot@cisco.com>
Mon, 21 Oct 2019 19:03:39 +0000 (21:03 +0200)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Mon, 21 Oct 2019 20:55:52 +0000 (20:55 +0000)
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I0ff4d58c181b2bdf483b8b039ad005c2a4915aa8

test/test_geneve.py

index ffa8fb8..56b9951 100644 (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,