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

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

Issue 2446463002: Fetch retry summary and use it to determine what tests to rebaseline. (Closed)
Patch Set: Add test for case where no retry summary can be downloaded 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot_unittest.py
index a7aabb324789aee86c98101cba2ef875cda8d6c2..13ec00c1d9c649fa72798ec2d0a36901236a72a8 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot_unittest.py
@@ -55,5 +55,5 @@ class BuilderTest(unittest.TestCase):
def fetch_layout_test_results_with_no_responses(self):
buildbot = BuildBot()
- buildbot._fetch_file_from_results = lambda: None
+ buildbot._fetch_file = lambda: None # pylint: disable=protected-access
self.assertIsNone(buildbot.fetch_layout_test_results(buildbot.results_url('Builder')))

Powered by Google App Engine
This is Rietveld 408576698