Index: build/android/pylib/remote/device/remote_device_environment.py |
diff --git a/build/android/pylib/remote/device/remote_device_environment.py b/build/android/pylib/remote/device/remote_device_environment.py |
index b69c7b2e6dd0a6987e0f0c368906510f5e267823..d055ae05d1f99f00f3ab58754006a16e7853be83 100644 |
--- a/build/android/pylib/remote/device/remote_device_environment.py |
+++ b/build/android/pylib/remote/device/remote_device_environment.py |
@@ -78,7 +78,8 @@ class RemoteDeviceEnvironment(environment.Environment): |
self._remote_device_minimum_os = device_json.get( |
'remote_device_minimum_os', None) |
self._remote_device_os = device_json.get('remote_device_os', None) |
- self._remote_device_timeout = device_json.get('remote_device_timeout', None) |
+ self._remote_device_timeout = device_json.get( |
+ 'remote_device_timeout', None) |
self._results_path = device_json.get('results_path', None) |
self._runner_package = device_json.get('runner_package', None) |
self._runner_type = device_json.get('runner_type', None) |
@@ -330,11 +331,6 @@ class RemoteDeviceEnvironment(environment.Environment): |
return self._network_config |
@property |
- def only_output_failures(self): |
- # TODO(jbudorick): Remove this once b/18981674 is fixed. |
- return True |
- |
- @property |
def results_path(self): |
return self._results_path |