diff --git a/plugin/src/test/kotlin/co/uzzu/dotenv/gradle/ChangeDotEnvTemplateFileTest.kt b/plugin/src/test/kotlin/co/uzzu/dotenv/gradle/ChangeDotEnvTemplateFileTest.kt index 441b84b..bf180f6 100644 --- a/plugin/src/test/kotlin/co/uzzu/dotenv/gradle/ChangeDotEnvTemplateFileTest.kt +++ b/plugin/src/test/kotlin/co/uzzu/dotenv/gradle/ChangeDotEnvTemplateFileTest.kt @@ -91,7 +91,10 @@ class ChangeDotEnvTemplateFileTest { assertThat(error) .isNotNull() .messageContains( - "Could not read the dotenv template file specified in the gradle.properties. dotenv.template.filename: .env.exampururu" + buildString { + append("Could not read the dotenv template file specified in the gradle.properties.") + append(" dotenv.template.filename: .env.exampururu") + } ) }