From 745809c666fd31ea16f323183bdfcbe7768265d7 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 30 Nov 2015 19:19:11 +0300 Subject: [PATCH] Rename TestlibTest -> StdlibTest --- .../kotlin/codegen/{TestlibTest.java => StdlibTest.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename compiler/tests/org/jetbrains/kotlin/codegen/{TestlibTest.java => StdlibTest.java} (97%) diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/TestlibTest.java b/compiler/tests/org/jetbrains/kotlin/codegen/StdlibTest.java similarity index 97% rename from compiler/tests/org/jetbrains/kotlin/codegen/TestlibTest.java rename to compiler/tests/org/jetbrains/kotlin/codegen/StdlibTest.java index 58d3c8cfb5c..204c86c0df0 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/TestlibTest.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/StdlibTest.java @@ -45,7 +45,7 @@ import org.jetbrains.kotlin.test.TestJdkKind; import java.io.File; import java.lang.reflect.Modifier; -public class TestlibTest extends KotlinTestWithEnvironment { +public class StdlibTest extends KotlinTestWithEnvironment { @Override protected KotlinCoreEnvironment createEnvironment() { CompilerConfiguration configuration = KotlinTestUtils.compilerConfigurationForTests(ConfigurationKind.ALL, TestJdkKind.FULL_JDK); @@ -73,7 +73,7 @@ public class TestlibTest extends KotlinTestWithEnvironment { @Override public Class loadClass(@NotNull String name) throws ClassNotFoundException { if (name.startsWith("junit.") || name.startsWith("org.junit.")) { - return TestlibTest.class.getClassLoader().loadClass(name); + return StdlibTest.class.getClassLoader().loadClass(name); } return super.loadClass(name); }