From 7f9e91eabe3b3c81fa0557a318b044d42467c3de Mon Sep 17 00:00:00 2001 From: Ilmir Usmanov Date: Mon, 10 Dec 2018 18:53:55 +0300 Subject: [PATCH] Use File.pathSeparator instead of : --- .../kotlin/jvm/compiler/Java9ModulesIntegrationTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/kotlin/jvm/compiler/Java9ModulesIntegrationTest.kt b/compiler/tests/org/jetbrains/kotlin/jvm/compiler/Java9ModulesIntegrationTest.kt index af7ea30935a..ef0ee826cf9 100644 --- a/compiler/tests/org/jetbrains/kotlin/jvm/compiler/Java9ModulesIntegrationTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/jvm/compiler/Java9ModulesIntegrationTest.kt @@ -249,7 +249,7 @@ class Java9ModulesIntegrationTest : AbstractKotlinCompilerIntegrationTest() { val command = listOf( File(KotlinTestUtils.getJdk9Home(), "bin/java").path, "-p", - "${ForTestCompileRuntime.runtimeJarForTests().path}:${jar.path}", + "${ForTestCompileRuntime.runtimeJarForTests().path}${File.pathSeparator}${jar.path}", "-m", "usage/some.module.withsome.packages.UsageKt" )