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

Unified Diff: tools/telemetry/telemetry/core/backends/chrome/inspector_websocket_unittest.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 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/core/backends/chrome/inspector_websocket_unittest.py
diff --git a/tools/telemetry/telemetry/core/backends/chrome/inspector_websocket_unittest.py b/tools/telemetry/telemetry/core/backends/chrome/inspector_websocket_unittest.py
index 9e3596a622914ade57a06fe177c809b0d60bfb1d..0d03ac199825b1371c92955af43ab5044bf7bcc0 100644
--- a/tools/telemetry/telemetry/core/backends/chrome/inspector_websocket_unittest.py
+++ b/tools/telemetry/telemetry/core/backends/chrome/inspector_websocket_unittest.py
@@ -70,6 +70,7 @@ class InspectorWebsocketUnittest(unittest.TestCase):
inspector = inspector_websocket.InspectorWebsocket(
notification_handler=lambda data: True,
error_handler=_ReraiseExceptionErrorHandler)
+ # pylint: disable=protected-access
inspector._socket = FakeSocket(self._mock_timer)
# The third call to socket.recv() will take 15 seconds without any data
# received, hence the below call will raise a
@@ -82,6 +83,7 @@ class InspectorWebsocketUnittest(unittest.TestCase):
inspector = inspector_websocket.InspectorWebsocket(
notification_handler=lambda data: True,
error_handler=_DoNothingExceptionErrorHandler)
+ # pylint: disable=protected-access
inspector._socket = FakeSocket(self._mock_timer)
# The third and forth calls to socket.recv() will take 30 seconds without
# any data received, hence the below call will raise a
@@ -93,7 +95,9 @@ class InspectorWebsocketUnittest(unittest.TestCase):
def testDispatchNotificationUntilDoneNotTimedOut(self):
inspector = inspector_websocket.InspectorWebsocket(
notification_handler=lambda data: True,
+ # pylint: disable=protected-access
error_handler=_ReraiseExceptionErrorHandler)
+ # pylint: disable=protected-access
inspector._socket = FakeSocket(self._mock_timer)
# Even though it takes 70 seconds to receive all the data, the call below
# will succeed since there are no interval which the previous data package

Powered by Google App Engine
This is Rietveld 408576698