Chromium Code Reviews| Index: tools/profile_chrome/controllers_unittest.py |
| diff --git a/tools/profile_chrome/controllers_unittest.py b/tools/profile_chrome/controllers_unittest.py |
| index 1d9a10ca84d90c0c501a6af0560e169a71298ee4..3b18bd02010590f6d72ed371a012efeb44a530f9 100644 |
| --- a/tools/profile_chrome/controllers_unittest.py |
| +++ b/tools/profile_chrome/controllers_unittest.py |
| @@ -6,19 +6,18 @@ import unittest |
| from profile_chrome import profiler |
| -from pylib import android_commands |
| from pylib.device import device_utils |
| from pylib.device import intent |
| class BaseControllerTest(unittest.TestCase): |
| def setUp(self): |
| - devices = android_commands.GetAttachedDevices() |
| + devices = device_utils.DeviceUtils.HealthyDevices() |
| self.browser = 'stable' |
| self.package_info = profiler.GetSupportedBrowsers()[self.browser] |
| self.device = device_utils.DeviceUtils(devices[0]) |
|
Sami
2015/05/12 18:37:09
Should the DeviceUtils part be removed here?
jbudorick
2015/05/13 03:21:22
Yes, done.
|
| - self.device.old_interface.CloseApplication(self.package_info.package) |
| + self.device.ForceStop(self.package_info.package) |
| self.device.StartActivity( |
| intent.Intent(activity=self.package_info.activity, |
| package=self.package_info.package), |