From 10348dc9267046332367c94d2ecbb0aff98fe93b Mon Sep 17 00:00:00 2001 From: Adam Semenenko <152864218+adam-enko@users.noreply.github.com> Date: Mon, 11 Nov 2024 12:09:27 +0100 Subject: [PATCH] formatting --- .../KmpCommonSourceSharedWithDependentsTest.kt | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt b/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt index 595f02b8e8..94ceb27e73 100644 --- a/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt +++ b/dokka-runners/dokka-gradle-plugin/src/testFunctional/kotlin/KmpCommonSourceSharedWithDependentsTest.kt @@ -66,25 +66,28 @@ private fun initProject( """.trimMargin() createKotlinFile( - "src/commonMain/kotlin/CommonMainCls.kt", """ + "src/commonMain/kotlin/CommonMainCls.kt", + """ package a.b.c /** commonMain class */ class CommonMainCls - """.trimIndent() + """.trimIndent() ) createKotlinFile( - "src/iosMain/kotlin/IosMainCls.kt", """ + "src/iosMain/kotlin/IosMainCls.kt", + """ package a.b.c /** iosMain class */ class IosMainCls - """.trimIndent() + """.trimIndent() ) createKotlinFile( - "src/iosX64Main/kotlin/iosX64Fn.kt", """ + "src/iosX64Main/kotlin/iosX64Fn.kt", + """ package a.b.c /** iosX64Main function */ @@ -92,7 +95,7 @@ private fun initProject( println(a) println(b) } - """.trimIndent() + """.trimIndent() ) config()