acl: l2 classify test support python3 87/22887/2
authorOle Troan <ot@cisco.com>
Mon, 21 Oct 2019 18:39:45 +0000 (20:39 +0200)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Mon, 21 Oct 2019 19:53:18 +0000 (19:53 +0000)
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I3b2e57e3dcf04ae50724b5909272b083d6003a85

src/plugins/acl/test/test_classify_l2_acl.py

index 8ba7181..1525f72 100644 (file)
@@ -274,7 +274,7 @@ class TestClassifyAcl(VppTestCase):
         :param int start: Number to start numbering from.
         """
         n_int = len(self.pg_interfaces)
-        macs_per_if = count / n_int
+        macs_per_if = count // n_int
         i = -1
         for pg_if in self.pg_interfaces:
             i += 1
@@ -328,7 +328,7 @@ class TestClassifyAcl(VppTestCase):
                 dst_hosts = self.hosts_by_pg_idx[dst_if.sw_if_index]
                 n_int = len(dst_hosts) * len(src_hosts)
                 for i in range(0, n_int):
-                    dst_host = dst_hosts[i / len(src_hosts)]
+                    dst_host = dst_hosts[i // len(src_hosts)]
                     src_host = src_hosts[i % len(src_hosts)]
                     pkt_info = self.create_packet_info(src_if, dst_if)
                     if ipv6 == 1: