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

Unified Diff: tools/telemetry/telemetry/testing/progress_reporter.py

Issue 1458083003: [Telemetry + tools/perf] Modify the pylint disable message to use symbolic name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: tools/telemetry/telemetry/testing/progress_reporter.py
diff --git a/tools/telemetry/telemetry/testing/progress_reporter.py b/tools/telemetry/telemetry/testing/progress_reporter.py
index ca04d2d63cb9ab1b37831e22c5d45a4f0c67802e..036192b173a6008bb31afdbd6f04d7c0afc81d00 100644
--- a/tools/telemetry/telemetry/testing/progress_reporter.py
+++ b/tools/telemetry/telemetry/testing/progress_reporter.py
@@ -46,7 +46,7 @@ class ProgressReporter(object):
class TestSuite(unittest.TestSuite):
"""TestSuite that can delegate start and stop calls to a TestResult object."""
- def run(self, result): # pylint: disable=W0221
+ def run(self, result): # pylint: disable=arguments-differ
if hasattr(result, 'startTestSuite'):
result.startTestSuite(self)
result = super(TestSuite, self).run(result)
« no previous file with comments | « tools/telemetry/telemetry/page/shared_page_state_unittest.py ('k') | tools/telemetry/telemetry/testing/run_chromeos_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698