Fix tests

This commit is contained in:
Sergey Mashkov
2015-11-24 16:37:58 +03:00
parent b57d2ff702
commit e25d31618c
6 changed files with 10 additions and 9 deletions
@@ -58,7 +58,7 @@ public class ForTestCompileRuntime {
public static synchronized ClassLoader runtimeAndReflectJarClassLoader() {
ClassLoader loader = reflectJarClassLoader.get();
if (loader == null) {
loader = createClassLoader(runtimeJarForTests(), reflectJarForTests());
loader = createClassLoader(runtimeJarForTests(), reflectJarForTests(), kotlinTestJarForTests());
reflectJarClassLoader = new SoftReference<ClassLoader>(loader);
}
return loader;