| 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)
|
|
|