diff --git a/weak/build.gradle.kts b/weak/build.gradle.kts index c39b5fb..7d5c7c6 100644 --- a/weak/build.gradle.kts +++ b/weak/build.gradle.kts @@ -17,6 +17,7 @@ plugins { alias(opensavvyConventions.plugins.base) alias(opensavvyConventions.plugins.kotlin.library) + alias(libsCommon.plugins.testBalloon) } kotlin { @@ -46,7 +47,7 @@ kotlin { } sourceSets.commonTest.dependencies { - implementation(libs.bundles.prepared) + implementation(libsCommon.opensavvy.prepared.testBalloon) } } diff --git a/weak/src/commonTest/kotlin/algorithms/WeakKeyArrayMapTest.kt b/weak/src/commonTest/kotlin/algorithms/WeakKeyArrayMapTest.kt index 8c8b0c4..1654f32 100644 --- a/weak/src/commonTest/kotlin/algorithms/WeakKeyArrayMapTest.kt +++ b/weak/src/commonTest/kotlin/algorithms/WeakKeyArrayMapTest.kt @@ -17,7 +17,7 @@ package opensavvy.pedestal.weak.algorithms import opensavvy.pedestal.weak.ExperimentalWeakApi -import opensavvy.prepared.runner.kotest.PreparedSpec +import opensavvy.prepared.runner.testballoon.preparedSuite import opensavvy.prepared.suite.Prepared import opensavvy.prepared.suite.TestDsl import opensavvy.prepared.suite.prepared @@ -28,7 +28,7 @@ import opensavvy.prepared.suite.random.randomInt @Suppress("NAME_SHADOWING") @OptIn(ExperimentalWeakApi::class) -class WeakKeyArrayMapTest : PreparedSpec({ +val WeakKeyArrayMapTest by preparedSuite { // region Helpers to fake weak references used as keys during these tests @@ -182,4 +182,4 @@ class WeakKeyArrayMapTest : PreparedSpec({ } } -}) +}