summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/stateless_tests/stl_ipv6_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/regression/stateless_tests/stl_ipv6_test.py')
-rwxr-xr-xscripts/automation/regression/stateless_tests/stl_ipv6_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/automation/regression/stateless_tests/stl_ipv6_test.py b/scripts/automation/regression/stateless_tests/stl_ipv6_test.py
index 1fe248a3..3f740770 100755
--- a/scripts/automation/regression/stateless_tests/stl_ipv6_test.py
+++ b/scripts/automation/regression/stateless_tests/stl_ipv6_test.py
@@ -19,7 +19,7 @@ class STLIPv6_Test(CStlGeneral_Test):
ping_count = 5
expected_replies = 4 # allow one loss
results = self.stl_trex.ping_ip(src_port = 0, dst_ip = 'ff02::1', count = ping_count)
- good_replies = len(filter(lambda result: result['status'] == 'success', results))
+ good_replies = len(list(filter(lambda result: result['status'] == 'success', results)))
if self.is_loopback:
# negative test, loopback
if good_replies > 0:
@@ -35,7 +35,7 @@ class STLIPv6_Test(CStlGeneral_Test):
# negative test, unknown IP
results = self.stl_trex.ping_ip(src_port = 0, dst_ip = '1234::1234', count = ping_count)
- good_replies = len(filter(lambda result: result['status'] == 'success', results))
+ good_replies = len(list(filter(lambda result: result['status'] == 'success', results)))
if good_replies > 0:
self.fail('We have answers from unknown IPv6, bug!\nOutput: %s' % results)
else: