Chromium Code Reviews| Index: build/android/pylib/device/device_utils_test.py |
| diff --git a/build/android/pylib/device/device_utils_test.py b/build/android/pylib/device/device_utils_test.py |
| index e5e39360366ca58f89629852473bcb6bba65df3d..a65befef0693fcc55ad8fc8689036a262783e79c 100755 |
| --- a/build/android/pylib/device/device_utils_test.py |
| +++ b/build/android/pylib/device/device_utils_test.py |
| @@ -739,15 +739,6 @@ class DeviceUtilsGetDevicePieWrapper(DeviceUtilsTest): |
| constants.ANDROID_SDK_VERSION_CODES.JELLY_BEAN): |
| self.assertEqual('', self.device.GetDevicePieWrapper()) |
| - def testGetDevicePieWrapper_ics(self): |
|
jbudorick
2015/05/11 17:38:36
Removing the test but not the code isn't quite rig
|
| - with self.assertCalls( |
| - (self.call.device.build_version_sdk(), |
| - constants.ANDROID_SDK_VERSION_CODES.ICE_CREAM_SANDWICH), |
| - (mock.call.pylib.constants.GetOutDirectory(), '/foo/bar'), |
| - (mock.call.os.path.exists(mock.ANY), True), |
| - (self.call.adb.Push(mock.ANY, mock.ANY), '')): |
| - self.assertNotEqual('', self.device.GetDevicePieWrapper()) |
| - |
| @mock.patch('time.sleep', mock.Mock()) |
| class DeviceUtilsKillAllTest(DeviceUtilsTest): |