Skip to content

Commit

Permalink
[#354] Fix dependency version naming + upgrade MockK in template to 1…
Browse files Browse the repository at this point in the history
….13.4
  • Loading branch information
luongvo committed Feb 13, 2023
1 parent d0a4ce7 commit e973b93
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sample-compose/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ dependencies {
testImplementation("io.kotest:kotest-assertions-core:${Versions.TEST_KOTEST_VERSION}")
testImplementation("junit:junit:${Versions.TEST_JUNIT_VERSION}")
testImplementation("io.mockk:mockk:${Versions.TEST_MOCKK_VERSION}")
testImplementation("app.cash.turbine:turbine:${Versions.TEST_TURBINE}")
testImplementation("app.cash.turbine:turbine:${Versions.TEST_TURBINE_VERSION}")

// Instrument test
androidTestImplementation(platform("androidx.compose:compose-bom:${Versions.COMPOSE_BOM_VERSION}"))
Expand Down
2 changes: 1 addition & 1 deletion sample-compose/buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ object Versions {
const val TEST_KOTEST_VERSION = "5.5.4"
const val TEST_MOCKK_VERSION = "1.12.3"
const val TEST_RULES_VERSION = "1.5.0"
const val TEST_TURBINE = "0.12.1"
const val TEST_TURBINE_VERSION = "0.12.1"
}
2 changes: 1 addition & 1 deletion template-compose/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ dependencies {
testImplementation("io.kotest:kotest-assertions-core:${Versions.TEST_KOTEST_VERSION}")
testImplementation("junit:junit:${Versions.TEST_JUNIT_VERSION}")
testImplementation("io.mockk:mockk:${Versions.TEST_MOCKK_VERSION}")
testImplementation("app.cash.turbine:turbine:${Versions.TEST_TURBINE}")
testImplementation("app.cash.turbine:turbine:${Versions.TEST_TURBINE_VERSION}")

// Instrument test
androidTestImplementation(platform("androidx.compose:compose-bom:${Versions.COMPOSE_BOM_VERSION}"))
Expand Down
2 changes: 1 addition & 1 deletion template-compose/buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ object Versions {
const val TEST_JUNIT_VERSION = "4.13.2"
const val TEST_KOTEST_VERSION = "4.6.3"
const val TEST_MOCKK_VERSION = "1.13.3"
const val TEST_TURBINE = "0.12.1"
const val TEST_TURBINE_VERSION = "0.12.1"
}

0 comments on commit e973b93

Please sign in to comment.