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

Unified Diff: build/android/pylib/host_driven/run_python_tests.py

Issue 12544033: [Android] Rewrite base test result classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
Index: build/android/pylib/host_driven/run_python_tests.py
diff --git a/build/android/pylib/host_driven/run_python_tests.py b/build/android/pylib/host_driven/run_python_tests.py
index 10ef87c70872f75a501cc842f0cca7de42f3801e..4fac081cb8dde20b325b26907388a18ce34c604e 100644
--- a/build/android/pylib/host_driven/run_python_tests.py
+++ b/build/android/pylib/host_driven/run_python_tests.py
@@ -11,7 +11,7 @@ import types
from pylib import android_commands
from pylib import constants
-from pylib.base.test_result import TestResults
+from pylib.base import base_test_result
from pylib.instrumentation import test_package
from pylib.instrumentation import test_runner
@@ -75,7 +75,7 @@ def DispatchPythonTests(options):
if not available_tests:
logging.warning('No Python tests to run with current args.')
- return TestResults()
+ return base_test_result.TestRunResults()
available_tests *= options.number_of_runs
test_names = [t.qualified_name for t in available_tests]

Powered by Google App Engine
This is Rietveld 408576698