Skip to content

Commit

Permalink
remove the check for Gradle < 8.5 in LifecycleTest
Browse files Browse the repository at this point in the history
There's no need to test back that far anymore, and we don't.
The simple version check we had doesn't work since "8.10" is less than "8.5",
and there's no need to fix it instead of just removing it.
  • Loading branch information
RBusarow committed Oct 31, 2024
1 parent 1bf3174 commit b15d6cb
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ class LifecycleTest : BaseGradleTest() {
}
}

val calculatingMessage = when {
versions.gradleVersion >= "8.5" -> "Calculating task graph as no cached configuration is available for tasks: compileKotlin"
else -> "Calculating task graph as no configuration cache is available for tasks: compileKotlin"
}
val calculatingMessage =
"Calculating task graph as no cached configuration is available for tasks: compileKotlin"

val storingMessage = "Configuration cache entry stored."

Expand Down

0 comments on commit b15d6cb

Please sign in to comment.