From 8784d89f38b93e646be6382896b51b5b24c8828c Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 13 Apr 2018 21:38:39 +0300 Subject: [PATCH] Use kotlin-stdlib-sources.jar in tests Instead of deprecated kotlin-runtime-sources --- .../kotlin/codegen/forTestCompile/ForTestCompileRuntime.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java index 165efcc0370..ec9d6012909 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java @@ -58,7 +58,7 @@ public class ForTestCompileRuntime { @NotNull public static File runtimeSourcesJarForTests() { - return assertExists(new File("dist/kotlinc/lib/kotlin-runtime-sources.jar")); + return assertExists(new File("dist/kotlinc/lib/kotlin-stdlib-sources.jar")); } @NotNull