Fix classpath for ant tests

This commit is contained in:
Alexander Udalov
2015-03-12 21:13:16 +03:00
committed by Stanislav Erokhin
parent e80e033a1c
commit 8788bc7cc6
@@ -52,9 +52,8 @@ public class AntTaskJvmTest extends AntTaskBaseTest {
private static String getClassPathForAnt() {
return UtilsPackage.join(Arrays.asList(
getCompilerLib() + File.separator + "kotlin-ant.jar",
getCompilerLib() + File.separator + "kotlin-compiler.jar",
ForTestCompileRuntime.runtimeJarForTests().getAbsolutePath()
getCompilerLib() + File.separator + "kotlin-ant.jar"
), File.pathSeparator);
}