| Index: build/android/pylib/base/test_instance_factory.py
|
| diff --git a/build/android/pylib/base/test_instance_factory.py b/build/android/pylib/base/test_instance_factory.py
|
| index 129bd7f2f62a65b636ae92723a2071788d86332f..3658ab69a17b19b3b469b3ac7031720bf6b52775 100644
|
| --- a/build/android/pylib/base/test_instance_factory.py
|
| +++ b/build/android/pylib/base/test_instance_factory.py
|
| @@ -6,17 +6,17 @@ from pylib.gtest import gtest_test_instance
|
| from pylib.instrumentation import instrumentation_test_instance
|
| from pylib.junit import junit_test_instance
|
| from pylib.perf import perf_test_instance
|
| -from pylib.utils import isolator
|
| +from pylib.utils import device_dependencies
|
|
|
|
|
| def CreateTestInstance(args, error_func):
|
|
|
| if args.command == 'gtest':
|
| return gtest_test_instance.GtestTestInstance(
|
| - args, isolator.Isolator(), error_func)
|
| + args, device_dependencies.GetDataDependencies, error_func)
|
| elif args.command == 'instrumentation':
|
| return instrumentation_test_instance.InstrumentationTestInstance(
|
| - args, isolator.Isolator(), error_func)
|
| + args, device_dependencies.GetDataDependencies, error_func)
|
| elif args.command == 'junit':
|
| return junit_test_instance.JunitTestInstance(args, error_func)
|
| elif args.command == 'perf':
|
|
|