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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py

Issue 2329263002: Run format-webkitpy and fix long lines. (Closed)
Patch Set: Created 4 years, 3 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/port/android_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
index 352eb1571ad1c6763afb2bb6818f8165c2207187..a2573d93f2f1014c435452be5764b534fe258c5c 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py
@@ -204,8 +204,12 @@ class ChromiumAndroidDriverTest(unittest.TestCase):
self._mock_executive = MockExecutive2(run_command_fn=self._mock_adb.run_command)
self._port = android.AndroidPort(MockSystemHost(executive=self._mock_executive), 'android')
- self._driver = android.ChromiumAndroidDriver(self._port, worker_number=0,
- pixel_tests=True, driver_details=android.ContentShellDriverDetails(), android_devices=self._port._devices)
+ self._driver = android.ChromiumAndroidDriver(
+ self._port,
+ worker_number=0,
+ pixel_tests=True,
+ driver_details=android.ContentShellDriverDetails(),
+ android_devices=self._port._devices) # pylint: disable=protected-access
# The cmd_line() method in the Android port is used for starting a shell, not the test runner.
def test_cmd_line(self):
@@ -262,8 +266,12 @@ class ChromiumAndroidDriverTombstoneTest(unittest.TestCase):
self._mock_executive = MockExecutive2(run_command_fn=self._mock_adb.run_command)
self._port = android.AndroidPort(MockSystemHost(executive=self._mock_executive), 'android')
- self._driver = android.ChromiumAndroidDriver(self._port, worker_number=0,
- pixel_tests=True, driver_details=android.ContentShellDriverDetails(), android_devices=self._port._devices)
+ self._driver = android.ChromiumAndroidDriver(
+ self._port,
+ worker_number=0,
+ pixel_tests=True,
+ driver_details=android.ContentShellDriverDetails(),
+ android_devices=self._port._devices) # pylint: disable=protected-access
self._errors = []
self._driver._log_error = lambda msg: self._errors.append(msg)

Powered by Google App Engine
This is Rietveld 408576698