Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: build/android/pylib/python_test_base.py

Issue 11780003: [Android] Revert 175082 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/pylib/apk_info.py ('k') | build/android/pylib/run_java_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/python_test_base.py
===================================================================
--- build/android/pylib/python_test_base.py (revision 175217)
+++ build/android/pylib/python_test_base.py (working copy)
@@ -24,9 +24,9 @@
import time
import android_commands
+import apk_info
from run_java_tests import TestRunner
from test_result import SingleTestResult, TestResults
-from utils import apk_and_jar_info
# aka the parent of com.google.android
@@ -75,8 +75,8 @@
TestResults object with a single test result.
"""
test = self._ComposeFullTestName(fname, suite, test)
- apks = [apk_and_jar_info.ApkAndJarInfo(self.options.test_apk_path,
- self.options.test_apk_jar_path)]
+ apks = [apk_info.ApkInfo(self.options.test_apk_path,
+ self.options.test_apk_jar_path)]
java_test_runner = TestRunner(self.options, self.device_id, [test], False,
self.shard_index,
apks,
« no previous file with comments | « build/android/pylib/apk_info.py ('k') | build/android/pylib/run_java_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698