Index: build/android/pylib/gtest/gtest_test_instance.py |
diff --git a/build/android/pylib/gtest/gtest_test_instance.py b/build/android/pylib/gtest/gtest_test_instance.py |
index 640b84d088e8dfb6bf077b58794c6eaccf84084e..0a076c6fa96dd29cb0847b6e861cdcc4a45d5c75 100644 |
--- a/build/android/pylib/gtest/gtest_test_instance.py |
+++ b/build/android/pylib/gtest/gtest_test_instance.py |
@@ -12,7 +12,6 @@ |
from pylib.constants import host_paths |
from pylib.base import base_test_result |
from pylib.base import test_instance |
-from pylib.utils import isolator |
with host_paths.SysPath(host_paths.BUILD_COMMON_PATH): |
import unittest_util # pylint: disable=import-error |
@@ -198,8 +197,7 @@ |
args.isolate_file_path = os.path.join( |
host_paths.DIR_SOURCE_ROOT, default_isolate_file_path) |
- if (args.isolate_file_path and |
- not isolator.IsIsolateEmpty(args.isolate_file_path)): |
+ if args.isolate_file_path: |
self._isolate_abs_path = os.path.abspath(args.isolate_file_path) |
self._isolate_delegate = isolate_delegate |
self._isolated_abs_path = os.path.join( |