diff --git a/orx-parameters/build.gradle.kts b/orx-parameters/build.gradle.kts index 8d728647..f939e50f 100644 --- a/orx-parameters/build.gradle.kts +++ b/orx-parameters/build.gradle.kts @@ -18,7 +18,10 @@ kotlin { val jvmTest by getting { dependencies { implementation(libs.kluent) + implementation(libs.spek.dsl) + runtimeOnly(libs.spek.junit5) runtimeOnly(libs.kotlin.reflect) + } } } diff --git a/orx-parameters/src/jvmTest/kotlin/TestAnnotations.kt b/orx-parameters/src/jvmTest/kotlin/TestAnnotations.kt index 891e505e..b51d1f8a 100644 --- a/orx-parameters/src/jvmTest/kotlin/TestAnnotations.kt +++ b/orx-parameters/src/jvmTest/kotlin/TestAnnotations.kt @@ -56,7 +56,7 @@ object TestAnnotations : Spek({ describe("an annotated object") { it("has listable parameters") { val list = a.listParameters() - list.size `should be equal to` 12 + list.size `should be equal to` 13 list[0].property?.name `should be equal to` "d" list[0].parameterType `should be equal to` ParameterType.Double diff --git a/orx-property-watchers/build.gradle.kts b/orx-property-watchers/build.gradle.kts index 8c700d19..bb865a55 100644 --- a/orx-property-watchers/build.gradle.kts +++ b/orx-property-watchers/build.gradle.kts @@ -25,8 +25,6 @@ kotlin { val jvmTest by getting { dependencies { implementation(libs.kluent) - implementation(libs.spek.dsl) - runtimeOnly(libs.spek.junit5) runtimeOnly(libs.kotlin.reflect) } }