From ea6523ef62ca4c95ae3bd675182017cc7fdee874 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 12 May 2020 11:40:51 -0400 Subject: [PATCH] Fix reference report regression. --- tests/wpt/reftests-report/gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/reftests-report/gen.py b/tests/wpt/reftests-report/gen.py index bfb7485c86d..9156e42c469 100755 --- a/tests/wpt/reftests-report/gen.py +++ b/tests/wpt/reftests-report/gen.py @@ -62,7 +62,7 @@ def main(source, commit_sha=None): if commit_sha: title = "

Layout 2020 regressions in commit %s

" % commit_sha - failures_2013 = {url for url, _ in failing_reftests("linux_x64", source)} + failures_2013 = {url for url, _, _ in failing_reftests("linux_x64", source)} for url, _expected_pass, screenshots in failing_reftests("linux_x64_2020", source): if url not in failures_2013: failures.add(url, screenshots)