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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py

Issue 2679393004: Fix all "dangerous-default-value" pylint warnings. (Closed)
Patch Set: Created 3 years, 10 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/layout_tests/views/buildbot_results_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py
index 90294bb0d95b32eea3270cff4de3242c628ae4f3..757f6322c23841fefc40bdacec7c690dbe311d40 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py
@@ -88,8 +88,7 @@ class BuildBotPrinterTests(unittest.TestCase):
def test_print_unexpected_results_fail_on_retry_also(self):
port = MockHost().port_factory.get('test')
printer, out = self.get_printer()
- summary = test_run_results_unittest.summarized_results(
- port, expected=False, passing=False, flaky=False, fail_on_retry=True)
+ summary = test_run_results_unittest.summarized_results(port, expected=False, passing=False, flaky=False)
printer.print_unexpected_results(summary)
output = out.getvalue()
self.assertIn(

Powered by Google App Engine
This is Rietveld 408576698