Skip to content

Commit 938fcc8

Browse files
committed
deps: Update kotest to v6.0.2
Signed-off-by: Frank Viernau <[email protected]>
1 parent 31abbbc commit 938fcc8

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jruby = "9.4.14.0"
3838
jslt = "0.1.14"
3939
jsonSchemaValidator = "1.5.8"
4040
kaml = "0.94.0"
41-
kotest = "6.0.1"
41+
kotest = "6.0.2"
4242
kotlinPoet = "2.2.0"
4343
kotlinxCoroutines = "1.10.2"
4444
kotlinxHtml = "0.12.0"

model/src/test/kotlin/utils/FindingCurationMatcherTest.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
package org.ossreviewtoolkit.model.utils
2121

22-
import io.kotest.core.spec.IsolationMode
2322
import io.kotest.core.spec.style.WordSpec
2423
import io.kotest.matchers.collections.containExactlyInAnyOrder
2524
import io.kotest.matchers.nulls.beNull
@@ -42,8 +41,6 @@ class FindingCurationMatcherTest : WordSpec() {
4241
private lateinit var finding: LicenseFinding
4342
private lateinit var curation: LicenseFindingCuration
4443

45-
override fun isolationMode() = IsolationMode.InstancePerLeaf
46-
4744
private fun setupFinding(license: String, path: String, startLine: Int, endLine: Int) {
4845
finding = LicenseFinding(
4946
license = license,

model/src/test/kotlin/utils/FindingsMatcherTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ class FindingsMatcherTest : WordSpec() {
5151
private val licenseFindings = mutableSetOf<LicenseFinding>()
5252
private val copyrightFindings = mutableSetOf<CopyrightFinding>()
5353

54-
override fun isolationMode() = IsolationMode.InstancePerLeaf
54+
// Use InstancePerRoot to work around https://github.com/kotest/kotest/issues/5021.
55+
override fun isolationMode() = IsolationMode.InstancePerRoot
5556

5657
private fun setupLicenseFinding(license: String, path: String, line: Int = 1) {
5758
licenseFindings += LicenseFinding(

0 commit comments

Comments
 (0)