summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/android/pylib/host_driven/test_case.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/build/android/pylib/host_driven/test_case.py b/build/android/pylib/host_driven/test_case.py
index f5bb803..3387c94 100644
--- a/build/android/pylib/host_driven/test_case.py
+++ b/build/android/pylib/host_driven/test_case.py
@@ -15,8 +15,9 @@ which the test method will run against. The test runner runs the test method
itself, collecting the result, and calls TearDown.
Tests can perform arbitrary Python commands and asserts in test methods. Tests
-that run instrumentation tests can make use of the _RunJavaTests helper function
-to trigger Java tests and convert results into a single host-driven test result.
+that run instrumentation tests can make use of the _RunJavaTestFilters helper
+function to trigger Java tests and convert results into a single host-driven
+test result.
"""
import logging
@@ -96,11 +97,6 @@ class HostDrivenTestCase(object):
finally:
java_test_runner.TearDown()
- # TODO(gkanwar): Remove old method once downstream tests are updated
- def _RunJavaTests(self, package_name, tests):
- """Calls a list of tests and stops at the first test failure."""
- return self._RunJavaTestFilters(tests)
-
def _RunJavaTestFilters(self, test_filters):
"""Calls a list of tests and stops at the first test failure.