From 0ee5846cc1500535a666e882afff3cf892a98969 Mon Sep 17 00:00:00 2001 From: Andrey Shcheglov Date: Thu, 26 May 2022 13:32:53 +0300 Subject: [PATCH] Fix the indentation ### What's done: * Indentation fixed with diktat:fix@diktat --- .../plugin/maven/DiktatMavenPluginIntegrationTest.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/diktat-maven-plugin/src/test/kotlin/org/cqfn/diktat/plugin/maven/DiktatMavenPluginIntegrationTest.kt b/diktat-maven-plugin/src/test/kotlin/org/cqfn/diktat/plugin/maven/DiktatMavenPluginIntegrationTest.kt index 35573f9d4e..31b8e8089f 100644 --- a/diktat-maven-plugin/src/test/kotlin/org/cqfn/diktat/plugin/maven/DiktatMavenPluginIntegrationTest.kt +++ b/diktat-maven-plugin/src/test/kotlin/org/cqfn/diktat/plugin/maven/DiktatMavenPluginIntegrationTest.kt @@ -88,8 +88,8 @@ class DiktatMavenPluginIntegrationTest { */ private inline fun String.assertContains(other: CharSequence, crossinline lazyMessage: () -> String = { - "The string: \"$this\" doesn't contain the substring: \"$other\"" - }) { + "The string: \"$this\" doesn't contain the substring: \"$other\"" + }) { Assertions.assertTrue(contains(other)) { lazyMessage() } @@ -100,8 +100,8 @@ class DiktatMavenPluginIntegrationTest { */ private inline fun String.assertContains(regex: Regex, crossinline lazyMessage: () -> String = { - "The string: \"$this\" doesn't contain any substring matching the regex: \"$regex\"" - }) { + "The string: \"$this\" doesn't contain any substring matching the regex: \"$regex\"" + }) { Assertions.assertTrue(contains(regex)) { lazyMessage() }