diff options
author | Delan Azabani <dazabani@igalia.com> | 2023-10-20 15:20:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-20 07:20:19 +0000 |
commit | aabae55407705aa96f04b89bd0b893c18be78cf4 (patch) | |
tree | e0a28cbd9fe610003b1f9a949277b8372a570be3 /python/wpt/run.py | |
parent | 582943a19eeef23e3efd381ff35637edc32adb5c (diff) | |
download | servo-aabae55407705aa96f04b89bd0b893c18be78cf4.tar.gz servo-aabae55407705aa96f04b89bd0b893c18be78cf4.zip |
Fix filtered test counts in WPT summaries (#30591)
Diffstat (limited to 'python/wpt/run.py')
-rw-r--r-- | python/wpt/run.py | 2 |
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 |