Skip to content

Commit 80bfde1

Browse files
authored
Merge pull request #13 from rhaendel/dependabot/gradle/io.kotest-kotest-runner-junit5-6.0.0
Bump io.kotest:kotest-runner-junit5 from 5.9.1 to 6.0.0
2 parents 331fc71 + 1708f47 commit 80bfde1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ dependencies {
1212

1313
// for tapSystemOut
1414
testImplementation("com.github.stefanbirkner:system-lambda:1.2.1")
15-
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")
15+
testImplementation("io.kotest:kotest-runner-junit5:6.0.0")
16+
testImplementation("io.kotest:kotest-assertions-table:6.0.0")
1617
testRuntimeOnly("ch.qos.logback:logback-classic:1.5.18")
1718
}
1819

src/test/kotlin/de/ronny_h/aoc/extensions/CombinationsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package de.ronny_h.aoc.extensions
22

33
import io.kotest.core.spec.style.StringSpec
4-
import io.kotest.data.blocking.forAll
4+
import io.kotest.data.forAll
55
import io.kotest.data.row
66
import io.kotest.matchers.collections.shouldContainExactlyInAnyOrder
77
import io.kotest.matchers.shouldBe

src/test/kotlin/de/ronny_h/aoc/extensions/StringUtilsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package de.ronny_h.aoc.extensions
22

33
import io.kotest.core.spec.style.StringSpec
4-
import io.kotest.data.blocking.forAll
4+
import io.kotest.data.forAll
55
import io.kotest.data.row
66
import io.kotest.matchers.shouldBe
77

src/test/kotlin/de/ronny_h/aoc/year2017/day04/HighEntropyPassphrasesTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package de.ronny_h.aoc.year2017.day04
22

33
import io.kotest.core.spec.style.StringSpec
4-
import io.kotest.data.blocking.forAll
4+
import io.kotest.data.forAll
55
import io.kotest.data.row
66
import io.kotest.matchers.shouldBe
77

0 commit comments

Comments
 (0)