aboutsummaryrefslogtreecommitdiffstats
path: root/python/wpt/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/wpt/run.py')
-rw-r--r--python/wpt/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/wpt/run.py b/python/wpt/run.py
index 486f4ce744e..90410133fe6 100644
--- a/python/wpt/run.py
+++ b/python/wpt/run.py
@@ -289,7 +289,7 @@ def filter_intermittents(
def add_result(output, text, results: List[UnexpectedResult], filter_func) -> None:
filtered = [str(result) for result in filter(filter_func, results)]
if filtered:
- output += [f"{text} ({len(results)}): ", *filtered]
+ output += [f"{text} ({len(filtered)}): ", *filtered]
def is_stable_and_unexpected(result):
return not result.flaky and not result.issues