diff --git a/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java b/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java index 0887d5843d9..83e706365e9 100644 --- a/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java +++ b/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java @@ -131,7 +131,7 @@ public abstract class KotlinDebuggerTestCase extends DescriptorTestCase { MockLibraryUtil.compileKotlin(sourcesDir, new File(outputDir), CUSTOM_LIBRARY_JAR.getPath()); - List options = Arrays.asList("-d", outputDir); + List options = Arrays.asList("-d", outputDir, "-classpath", ForTestCompileRuntime.runtimeJarForTests().getPath()); JetTestUtils.compileJavaFiles(findJavaFiles(new File(sourcesDir)), options); IS_TINY_APP_COMPILED = true;