From 08d3f20e09d7cdd9e10b2c32ac467d5ea29f251b Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Fri, 2 Feb 2018 13:41:01 +0300 Subject: [PATCH] Reformat: AbstractMultiModuleHighlightingTest --- .../resolve/AbstractMultiModuleHighlightingTest.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/AbstractMultiModuleHighlightingTest.kt b/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/AbstractMultiModuleHighlightingTest.kt index 73d2dbc7b96..5b2ba36efd8 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/AbstractMultiModuleHighlightingTest.kt +++ b/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/AbstractMultiModuleHighlightingTest.kt @@ -27,7 +27,7 @@ import org.jetbrains.kotlin.test.TestJdkKind abstract class AbstractMultiModuleHighlightingTest : AbstractMultiHighlightingTest() { protected open fun checkHighlightingInAllFiles( - shouldCheckFile: () -> Boolean = { !file.text.contains("// !CHECK_HIGHLIGHTING") } + shouldCheckFile: () -> Boolean = { !file.text.contains("// !CHECK_HIGHLIGHTING") } ) { checkFiles(shouldCheckFile) { checkHighlighting(myEditor, true, false) @@ -35,10 +35,10 @@ abstract class AbstractMultiModuleHighlightingTest : AbstractMultiHighlightingTe } protected fun doMultiPlatformTest( - vararg platforms: TargetPlatformKind<*>, - withStdlibCommon: Boolean = false, - configureModule: (Module, TargetPlatformKind<*>) -> Unit = { _, _ -> }, - jdk: TestJdkKind = TestJdkKind.MOCK_JDK + vararg platforms: TargetPlatformKind<*>, + withStdlibCommon: Boolean = false, + configureModule: (Module, TargetPlatformKind<*>) -> Unit = { _, _ -> }, + jdk: TestJdkKind = TestJdkKind.MOCK_JDK ) { val commonModuleName = "common" val commonModule = module(commonModuleName, jdk)