From ad44860604723373116a01ba3e5c2ae99104c1fe Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Tue, 14 Jan 2014 22:11:32 +0400 Subject: [PATCH] Fixed file name case (to fix tests on Linux). --- .../org/jetbrains/k2js/test/semantics/MultiPackageTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/js.tests/test/org/jetbrains/k2js/test/semantics/MultiPackageTest.java b/js/js.tests/test/org/jetbrains/k2js/test/semantics/MultiPackageTest.java index d3ed50ac02e..4b068da3aaf 100644 --- a/js/js.tests/test/org/jetbrains/k2js/test/semantics/MultiPackageTest.java +++ b/js/js.tests/test/org/jetbrains/k2js/test/semantics/MultiPackageTest.java @@ -35,18 +35,18 @@ public class MultiPackageTest extends MultipleFilesTranslationTest { } public void testPackageVariableVisibleFromOtherPackage() throws Exception { - checkFooBoxIsTrue("PackageVariableVisibleFromOtherPackage"); + checkFooBoxIsTrue("packageVariableVisibleFromOtherPackage"); } public void testNestedPackageFunctionCalledFromOtherPackage() throws Exception { runMultiFileTest("nestedPackageFunctionCalledFromOtherPackage", "a.foo", "box", true); } - public void testSubPackagesWithClashingNames() throws Exception { + public void testSubpackagesWithClashingNames() throws Exception { runMultiFileTest("subPackagesWithClashingNames", "a.foo", "box", true); } - public void testSubPackagesWithClashingNamesUsingImport() throws Exception { + public void testSubpackagesWithClashingNamesUsingImport() throws Exception { runMultiFileTest("subPackagesWithClashingNamesUsingImport", "a.foo", "box", true); }