summaryrefslogtreecommitdiffstats
path: root/test/test_l2bd.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_l2bd.py')
-rw-r--r--test/test_l2bd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_l2bd.py b/test/test_l2bd.py
index 718d5126bd9..ecd031188eb 100644
--- a/test/test_l2bd.py
+++ b/test/test_l2bd.py
@@ -126,7 +126,7 @@ class TestL2bd(VppTestCase):
:param count: Integer number of hosts to create MAC/IPv4 addresses for.
"""
n_int = len(cls.pg_interfaces)
- macs_per_if = count / n_int
+ macs_per_if = count // n_int
i = -1
for pg_if in cls.pg_interfaces:
i += 1