diff --git a/documentation/docs/extensions/pitest.md b/documentation/docs/extensions/pitest.md index 6d5040d4931..cfd04c3538b 100644 --- a/documentation/docs/extensions/pitest.md +++ b/documentation/docs/extensions/pitest.md @@ -22,7 +22,7 @@ After doing that, we need to inform Pitest that we're going to use `Kotest` as a ```kotlin // Assuming that you have already configured the Gradle/Maven extension configure { - testPlugin.set("Kotest") // <-- Telling Pitest that we're using Kotest + // testPlugin.set("Kotest") // needed only with old PIT <1.6.7, otherwise having kotest-extensions-pitest on classpath is enough targetClasses.set(listOf("my.company.package.*")) } ```