Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1766)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py

Issue 2453223002: rebaseline-cl: Don't rebaseline expected-MISSING tests. (Closed)
Patch Set: - Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
index 2b559f8e1a7c1c80544e5637f941e1a939086808..6e4cf9f1699e735730b6fe1c961a50b59ac29b4a 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
@@ -157,11 +157,6 @@ class LayoutTestResults(object):
LayoutTestResults._for_each_test(self._test_result_tree(), add_if_passes)
return sorted(results, key=lambda r: r.test_name())
- def unexpected_mismatch_results(self):
- return self._filter_tests(lambda r: r.has_mismatch_result() and not r.did_run_as_expected())
-
- def missing_results(self):
- return self._filter_tests(lambda r: r.is_missing_baseline())
-
def didnt_run_as_expected_results(self):
+ # TODO(qyearsley): Rename this method.
return self._filter_tests(lambda r: not r.did_run_as_expected())
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698