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

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

Issue 1314313004: [Android][telemetry] Update pylib imports for modules that moved into devil. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: tools/telemetry/telemetry/internal/platform/android_device_unittest.py
diff --git a/tools/telemetry/telemetry/internal/platform/android_device_unittest.py b/tools/telemetry/telemetry/internal/platform/android_device_unittest.py
index 9788af9fdfdf3d265d4c2fd83e6461407d5c0fb1..f953b30b7e78ebb0a9b2de3733180f653e47007e 100644
--- a/tools/telemetry/telemetry/internal/platform/android_device_unittest.py
+++ b/tools/telemetry/telemetry/internal/platform/android_device_unittest.py
@@ -9,13 +9,13 @@ from telemetry.internal.platform import android_device
from telemetry.testing import system_stub
import mock
-from pylib.device import device_utils
+from devil.android import device_utils
class _BaseAndroidDeviceTest(unittest.TestCase):
def setUp(self):
self._healthy_device_patcher = mock.patch(
- 'pylib.device.device_utils.DeviceUtils.HealthyDevices')
+ 'devil.android.device_utils.DeviceUtils.HealthyDevices')
self._healthy_device_mock = self._healthy_device_patcher.start()
self._android_device_stub = system_stub.Override(
android_device, ['subprocess', 'logging'])

Powered by Google App Engine
This is Rietveld 408576698