We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
libs.versions.toml
1 parent 02591e7 commit fa704f2Copy full SHA for fa704f2
kotest-native/gradle/libs.versions.toml
@@ -1,5 +1,5 @@
1
[versions]
2
-kotest = "6.0.2"
+kotest = "6.0.3"
3
kotlin = "2.2.10"
4
ksp = "2.2.10-2.0.2"
5
kotest-native/src/nativeTest/kotlin/io/kotest/examples/native/SsnTest.kt
@@ -2,7 +2,6 @@ package io.kotest.examples.native
import io.kotest.core.spec.style.FunSpec
import io.kotest.matchers.shouldBe
-import kotlinx.coroutines.delay
6
7
class SsnTest : FunSpec() {
8
init {
@@ -18,7 +17,6 @@ class SsnTest : FunSpec() {
18
17
}
19
20
test("ssn should be in the accepted format") {
21
- delay(22)
22
validateSocial("") shouldBe false
23
validateSocial("123-45-678") shouldBe false
24
validateSocial("12-45-6789") shouldBe false
0 commit comments