diff options
author | 2018-12-13 19:06:34 -0800 | |
---|---|---|
committer | 2018-12-13 19:06:34 -0800 | |
commit | 49183d3ec38f10b76fbf9ca3a7767415440714e3 (patch) | |
tree | 0b05ee0d3a6a13b2f4eb7646ba7ebc280b94762f | |
parent | 6d1fcd8553f9e29d02238663c1d63ebc4b219491 (diff) |
Migrate build/make to androidx.test
See go/jetpack-test-android-migration
Test: make checkbuild
Change-Id: If6a6b751c4a6ca837c3166688a0c93d2e923ee4c
-rw-r--r-- | tools/auto_gen_test_config_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/auto_gen_test_config_test.py b/tools/auto_gen_test_config_test.py index e68c27fdd2..51a8583f2e 100644 --- a/tools/auto_gen_test_config_test.py +++ b/tools/auto_gen_test_config_test.py @@ -34,7 +34,7 @@ MANIFEST_JUNIT_TEST = """<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.my.tests.x"> <instrumentation - android:name="android.support.test.runner.AndroidJUnitRunner" + android:name="androidx.test.runner.AndroidJUnitRunner" android:targetPackage="com.android.my.tests" /> </manifest> """ @@ -72,7 +72,7 @@ EXPECTED_JUNIT_TEST_CONFIG = """<?xml version="1.0" encoding="utf-8"?> <test class="com.android.tradefed.testtype.AndroidJUnitTest" > <option name="package" value="com.android.my.tests.x" /> - <option name="runner" value="android.support.test.runner.AndroidJUnitRunner" /> + <option name="runner" value="androidx.test.runner.AndroidJUnitRunner" /> </test> </configuration> """ |