| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_expectations_updater.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_expectations_updater.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_expectations_updater.py
|
| index fc8f37b3f12c9911fb6bff306b7eac1dc9119af1..ec019c1245ab0d172cdcce2ede4fd83f83fe46b0 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_expectations_updater.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_expectations_updater.py
|
| @@ -100,7 +100,7 @@ class WPTExpectationsUpdater(object):
|
| _log.warning('No results for build %s', build)
|
| return {}
|
| port_name = self.host.builders.port_name_for_builder_name(build.builder_name)
|
| - test_results = layout_test_results.didnt_run_as_expected_results()
|
| + test_results = [result for result in layout_test_results.didnt_run_as_expected_results() if not result.did_pass()]
|
| failing_results_dict = self.generate_results_dict(port_name, test_results)
|
| return failing_results_dict
|
|
|
|
|