| Index: build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| diff --git a/build/android/pylib/instrumentation/instrumentation_test_instance.py b/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| index 9f1e439ca0b1bfd4fd3209857719044ceab423c9..e9c33f1c544c7fc9fbac1fc0092b8d9cea6f69a8 100644
|
| --- a/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| +++ b/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| @@ -17,7 +17,6 @@
|
| from pylib.constants import host_paths
|
| from pylib.instrumentation import test_result
|
| from pylib.instrumentation import instrumentation_parser
|
| -from pylib.utils import isolator
|
| from pylib.utils import proguard
|
|
|
| with host_paths.SysPath(host_paths.BUILD_COMMON_PATH):
|
| @@ -293,8 +292,7 @@
|
|
|
| def _initializeDataDependencyAttributes(self, args, isolate_delegate):
|
| self._data_deps = []
|
| - if (args.isolate_file_path and
|
| - not isolator.IsIsolateEmpty(args.isolate_file_path)):
|
| + if args.isolate_file_path:
|
| if os.path.isabs(args.isolate_file_path):
|
| self._isolate_abs_path = args.isolate_file_path
|
| else:
|
|
|