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

Unified Diff: tools/telemetry/telemetry/internal/util/webpagereplay_unittest.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/internal/util/webpagereplay_unittest.py
diff --git a/tools/telemetry/telemetry/internal/util/webpagereplay_unittest.py b/tools/telemetry/telemetry/internal/util/webpagereplay_unittest.py
index bfc40b090f4867cf8eddd9a1f4975e682de4fdce..518e0d23baff42b69be6b35baf5b56951ba6e8ec 100644
--- a/tools/telemetry/telemetry/internal/util/webpagereplay_unittest.py
+++ b/tools/telemetry/telemetry/internal/util/webpagereplay_unittest.py
@@ -8,7 +8,7 @@ import unittest
from telemetry.internal.util import webpagereplay
-# pylint: disable=W0212
+# pylint: disable=protected-access
class CreateCommandTest(unittest.TestCase):
def testHasDnsGivesDnsPort(self):
expected_cmd_line = [
@@ -29,7 +29,7 @@ class CreateCommandTest(unittest.TestCase):
self.assertEqual(expected_cmd_line, cmd_line)
-# pylint: disable=W0212
+# pylint: disable=protected-access
class ParseLogFilePortsTest(unittest.TestCase):
def testEmptyLinesGivesEmptyDict(self):
log_lines = iter([])

Powered by Google App Engine
This is Rietveld 408576698