| Index: tools/telemetry/telemetry/core/platform/android_device_unittest.py
|
| diff --git a/tools/telemetry/telemetry/core/platform/android_device_unittest.py b/tools/telemetry/telemetry/core/platform/android_device_unittest.py
|
| index 6e7609b33713c142e141245e2edf01dd7f4577f0..b8a61dd7195aa7b0060420dafdd8f4c854ec42c8 100644
|
| --- a/tools/telemetry/telemetry/core/platform/android_device_unittest.py
|
| +++ b/tools/telemetry/telemetry/core/platform/android_device_unittest.py
|
| @@ -4,7 +4,6 @@
|
|
|
| import unittest
|
|
|
| -from telemetry import benchmark
|
| from telemetry.core import browser_options
|
| from telemetry.core.platform import android_device
|
| from telemetry.core.platform import android_platform_backend
|
| @@ -43,7 +42,7 @@ class GetDeviceTest(unittest.TestCase):
|
| def testNoAdbReturnsNone(self):
|
| finder_options = browser_options.BrowserFinderOptions()
|
|
|
| - def NoAdb(*_, **__):
|
| + def NoAdb(*_1, **_2):
|
| raise OSError('not found')
|
| self._android_device_stub.subprocess.Popen = NoAdb
|
|
|
|
|