diff --git a/ktorfit-ksp/src/test/kotlin/de/jensklingenberg/ktorfit/BodyAnnotationsTest.kt b/ktorfit-ksp/src/test/kotlin/de/jensklingenberg/ktorfit/BodyAnnotationsTest.kt index 1bf87ee05..13268b480 100644 --- a/ktorfit-ksp/src/test/kotlin/de/jensklingenberg/ktorfit/BodyAnnotationsTest.kt +++ b/ktorfit-ksp/src/test/kotlin/de/jensklingenberg/ktorfit/BodyAnnotationsTest.kt @@ -75,7 +75,7 @@ import de.jensklingenberg.ktorfit.http.Body interface TestService { @POST("user") - suspend fun test(@Body id: String): String + suspend fun test(@Body id: String?): String } """ )