aboutsummaryrefslogtreecommitdiff
path: root/palette
diff options
context:
space:
mode:
authorDustin Lam <dustinlam@google.com>2019-04-08 10:40:19 -0700
committerDustin Lam <dustinlam@google.com>2019-04-09 11:25:32 -0700
commit3979d96937e945201359c48c6d992447ef7ef79c (patch)
tree883d7e51c233a52e68b899cce5ecb0468258d0b8 /palette
parenteef088783159ded1019d130393b2ab584d23a131 (diff)
downloadsupport-3979d96937e945201359c48c6d992447ef7ef79c.tar.gz
Rename TEST_* to ANDROIDX_TEST_*
Renaming unclear naming prefix in our test deps to show that certain deps are only useful in Android instrumented tests. Also, clean up a bunch of unused test deps that were probably copied in due to the confusing naming. Test: ./gradlew test && ./gradlew cC Change-Id: I4b9e3e73c2c115d3c8359871e481e5e8fef8a544
Diffstat (limited to 'palette')
-rw-r--r--palette/build.gradle6
-rw-r--r--palette/ktx/build.gradle6
2 files changed, 6 insertions, 6 deletions
diff --git a/palette/build.gradle b/palette/build.gradle
index c753be18d5b..5f7cc1f9dce 100644
--- a/palette/build.gradle
+++ b/palette/build.gradle
@@ -19,9 +19,9 @@ dependencies {
annotationProcessor(NULLAWAY)
- androidTestImplementation(TEST_EXT_JUNIT)
- androidTestImplementation(TEST_CORE)
- androidTestImplementation(TEST_RUNNER)
+ androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
+ androidTestImplementation(ANDROIDX_TEST_CORE)
+ androidTestImplementation(ANDROIDX_TEST_RUNNER)
}
androidx {
diff --git a/palette/ktx/build.gradle b/palette/ktx/build.gradle
index d21f04bc03f..fd9413ffde5 100644
--- a/palette/ktx/build.gradle
+++ b/palette/ktx/build.gradle
@@ -36,9 +36,9 @@ dependencies {
api(project(":palette"))
api(KOTLIN_STDLIB)
androidTestImplementation(JUNIT)
- androidTestImplementation(TEST_EXT_JUNIT)
- androidTestImplementation(TEST_CORE)
- androidTestImplementation(TEST_RUNNER)
+ androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
+ androidTestImplementation(ANDROIDX_TEST_CORE)
+ androidTestImplementation(ANDROIDX_TEST_RUNNER)
}
androidx {