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

Unified Diff: telemetry/telemetry/internal/platform/android_device_unittest.py

Issue 2988563002: Fixed errors related to bad-continuation (Closed)
Patch Set: Removed pylintrc changes Created 3 years, 5 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: telemetry/telemetry/internal/platform/android_device_unittest.py
diff --git a/telemetry/telemetry/internal/platform/android_device_unittest.py b/telemetry/telemetry/internal/platform/android_device_unittest.py
index ac09935b31720378d597e34279235bb11f2ceb2e..219398ae202ec7f17b9f39b65a3d4d3c5573d657 100644
--- a/telemetry/telemetry/internal/platform/android_device_unittest.py
+++ b/telemetry/telemetry/internal/platform/android_device_unittest.py
@@ -54,7 +54,7 @@ class AndroidDeviceTest(_BaseAndroidDeviceTest):
finder_options = browser_options.BrowserFinderOptions()
with (
mock.patch('os.path.isabs', return_value=True)), (
- mock.patch('os.path.exists', return_value=False)):
+ mock.patch('os.path.exists', return_value=False)):
self.assertEquals([], self._android_device_stub.logging.warnings)
self.assertIsNone(android_device.GetDevice(finder_options))
@@ -79,8 +79,8 @@ class AndroidDeviceTest(_BaseAndroidDeviceTest):
self.assertEquals([
'Multiple devices attached. Please specify one of the following:\n'
' --device=015d14fec128220c\n'
- ' --device=015d14fec128220d'],
- self._android_device_stub.logging.warnings)
+ ' --device=015d14fec128220d'
+ ], self._android_device_stub.logging.warnings)
self.assertIsNone(device)
@decorators.Enabled('android')

Powered by Google App Engine
This is Rietveld 408576698