Skip to content

Commit 54ad227

Browse files
#430: Refactor Skipping test message
1 parent 403ebf9 commit 54ad227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/linux/test/TestcontainersSupport.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ object Testcontainers {
1616
get() = getenv("INSIDE_TESTCONTAINERS")?.toKString()?.toBoolean() == true
1717

1818
inline fun runIfAvailable(block: () -> Unit) {
19-
if (available) block() else println("Skipping test that requires testcontainers...")
19+
if (available) block() else println("[----------] Skipping test that requires testcontainers...")
2020
}
2121
}

0 commit comments

Comments
 (0)