Adjust declarations to account for removed test prefixes from deps bucket names

pull/1455/head
Tom Tresansky 1 year ago
parent 562a6eb189
commit a021bead58
No known key found for this signature in database
GPG Key ID: 99DCF7A2C0C53E39

@ -11,8 +11,8 @@ androidLibrary {
testing { testing {
dependencies { dependencies {
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
testImplementation("app.cash.turbine:turbine:1.0.0") implementation("app.cash.turbine:turbine:1.0.0")
} }
} }
} }

@ -24,10 +24,10 @@ androidLibrary {
testing { testing {
dependencies { dependencies {
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
testImplementation(project(":core:datastore-test")) implementation(project(":core:datastore-test"))
testImplementation(project(":core:testing")) implementation(project(":core:testing"))
testImplementation(project(":core:network")) implementation(project(":core:network"))
} }
jacoco { jacoco {

@ -16,7 +16,7 @@ androidLibrary {
testing { testing {
dependencies { dependencies {
testImplementation(project(":core:testing")) implementation(project(":core:testing"))
} }
jacoco { jacoco {

@ -15,8 +15,8 @@ androidLibrary {
testing { testing {
dependencies { dependencies {
testImplementation(project(":core:testing")) implementation(project(":core:testing"))
androidTestImplementation(project(":core:testing")) androidImplementation(project(":core:testing"))
} }
} }
} }

Loading…
Cancel
Save