Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
JavierSegoviaCordoba committed Apr 19, 2024
1 parent d9f7cf9 commit bfb5078
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.javiersc.hubdle.project.fixtures

internal const val KotlinVersionRegexOrEmptyOrNull = """(^$?)|(null)|(null)|(\d+\.\d+\.\d+)"""
const val KotlinVersionRegexOrEmptyOrNull = """(^$?)|(null)|(null)|(\d+\.\d+\.\d+)"""

internal const val KotlinDevVersionRegexOrEmptyOrNull =
"""(^$?)|(null)|(\d+\.\d+\.\d+)(\-)(dev)(\-)(\d+)"""
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package com.javiersc.hubdle.project.fixtures

internal const val KotlinVersionEnv = "KOTLIN_VERSION"
const val KotlinVersionEnv = "KOTLIN_VERSION"
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ internal class KotlinMultiplatformFeaturesComposeTest : GradleTestKitTest() {
.resolve("gradle/hubdle.libs.versions.toml")
.copyTo(target = hubdleTomlDestination, overwrite = true)
gradlew("build", stacktrace(), "--no-scan")
.apply { println(output) }
.task(":build")
.shouldNotBeNull()
.outcome
Expand Down

0 comments on commit bfb5078

Please sign in to comment.