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 {
dependencies {
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
testImplementation("app.cash.turbine:turbine:1.0.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
implementation("app.cash.turbine:turbine:1.0.0")
}
}
}

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

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

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

Loading…
Cancel
Save