Chromium Code Reviews| Index: chrome/android/host_driven_tests/DummyTest.py |
| diff --git a/chrome/android/host_driven_tests/DummyTest.py b/chrome/android/host_driven_tests/DummyTest.py |
| index accbdb918c49338ab7425b6e9ecf7c0013df0f36..27eaefc99835ab82b03645cf9141d996db79534e 100644 |
| --- a/chrome/android/host_driven_tests/DummyTest.py |
| +++ b/chrome/android/host_driven_tests/DummyTest.py |
| @@ -4,7 +4,7 @@ |
| import os |
| -from pylib.host_driven import python_test_base |
| +from pylib.host_driven import test_case |
| from pylib.host_driven import tests_annotations |
| @@ -14,11 +14,10 @@ DUMMY_JAVA_TEST_PATH = os.path.abspath( |
| 'DummyTest.java')) |
| -class DummyTest(python_test_base.PythonTestBase): |
| +class DummyTest(test_case.HostDrivenTestCase): |
| """Dummy host-driven test for testing the framework itself.""" |
|
frankf
2013/08/02 18:18:39
So you still need a downstream patch because of th
gkanwar1
2013/08/02 19:56:21
Good point. I also need to update Popular Urls tes
|
| @tests_annotations.Smoke |
| def testPass(self): |
| return self._RunJavaTests( |
| DUMMY_JAVA_TEST_PATH, ['DummyTest.testPass']) |
| - |