Use File.pathSeparator instead of :

This commit is contained in:
Ilmir Usmanov
2018-12-10 18:53:55 +03:00
parent 08d1c47ac3
commit 7f9e91eabe
@@ -249,7 +249,7 @@ class Java9ModulesIntegrationTest : AbstractKotlinCompilerIntegrationTest() {
val command = listOf<String>(
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"
)