aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_reassembly.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_reassembly.py')
-rw-r--r--test/test_reassembly.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_reassembly.py b/test/test_reassembly.py
index cef94f3dda6..8a61e21ffdd 100644
--- a/test/test_reassembly.py
+++ b/test/test_reassembly.py
@@ -1098,7 +1098,7 @@ class TestIPv4MWReassembly(VppTestCase):
first_packets = [[] for n in range(self.vpp_worker_count)]
second_packets = [[] for n in range(self.vpp_worker_count)]
rest_of_packets = [[] for n in range(self.vpp_worker_count)]
- for (_, p) in self.pkt_infos:
+ for _, p in self.pkt_infos:
wi = randrange(self.vpp_worker_count)
second_packets[wi].append(p[0])
if len(p) <= 1:
@@ -1930,7 +1930,7 @@ class TestIPv6MWReassembly(VppTestCase):
first_packets = [[] for n in range(self.vpp_worker_count)]
second_packets = [[] for n in range(self.vpp_worker_count)]
rest_of_packets = [[] for n in range(self.vpp_worker_count)]
- for (_, p) in self.pkt_infos:
+ for _, p in self.pkt_infos:
wi = randrange(self.vpp_worker_count)
second_packets[wi].append(p[0])
if len(p) <= 1: