Path separator fixed

This commit is contained in:
Natalia.Ukhorskaya
2012-11-21 20:04:48 +04:00
parent c726c95921
commit e4bb109060
@@ -29,7 +29,7 @@ public class AntTaskTest extends KotlinIntegrationTestBase {
String runtime = new File("dist/kotlinc/lib/kotlin-runtime.jar").getAbsolutePath();
assertEquals("compilation failed", 0, runAnt("build.log", "build.xml"));
runJava("hello.run", "-cp", jar + ":" + runtime, "Hello.namespace");
runJava("hello.run", "-cp", jar + File.pathSeparator + runtime, "Hello.namespace");
}
@Override