From dc8cf5a62d3f8bd3a5296d013db62ef7f18aefbc Mon Sep 17 00:00:00 2001 From: uzzu Date: Sun, 26 Nov 2023 00:39:27 +0900 Subject: [PATCH] Fix for ktlint violation --- .../co/uzzu/dotenv/gradle/ChangeDotEnvTemplateFileTest.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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") + } ) }