Index: build/android/pylib/uiautomator/test_runner.py |
diff --git a/build/android/pylib/uiautomator/test_runner.py b/build/android/pylib/uiautomator/test_runner.py |
index 39ed5ec829ad43f2829474a2f8e1393d9a800476..74e887deadc14b1e5fa9cf240e6b31682119dc7d 100644 |
--- a/build/android/pylib/uiautomator/test_runner.py |
+++ b/build/android/pylib/uiautomator/test_runner.py |
@@ -4,7 +4,7 @@ |
"""Class for running uiautomator tests on a single device.""" |
-from pylib.instrumentation import test_options |
+from pylib.instrumentation import test_options as instr_test_options |
from pylib.instrumentation import test_runner as instr_test_runner |
@@ -24,7 +24,7 @@ class TestRunner(instr_test_runner.TestRunner): |
Can be optionally requested by a test case. |
""" |
# Create an InstrumentationOptions object to pass to the super class |
- instrumentation_options = test_options.InstrumentationOptions( |
+ instrumentation_options = instr_test_options.InstrumentationOptions( |
test_options.build_type, |
test_options.tool, |
test_options.cleanup_test_files, |
@@ -37,7 +37,9 @@ class TestRunner(instr_test_runner.TestRunner): |
test_options.screenshot_failures, |
test_options.disable_assertions, |
wait_for_debugger=False, |
- test_apk=None) |
+ test_apk=None, |
+ test_apk_path=None, |
+ test_apk_jar_path=None) |
super(TestRunner, self).__init__(instrumentation_options, device, |
shard_index, test_pkg, ports_to_forward) |