Fixed file name case (to fix tests on Linux).

This commit is contained in:
Evgeny Gerashchenko
2014-01-14 22:11:32 +04:00
parent c924a5d097
commit ad44860604
@@ -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);
}