Package class name computation changed

This commit is contained in:
Andrey Breslav
2013-01-16 19:08:31 +04:00
parent 1671015466
commit dd15b0e222
2 changed files with 2 additions and 2 deletions
@@ -117,7 +117,7 @@ public class KotlinLightClassCoherenceTest extends KotlinAsJavaTestBase {
}
public void testPackage() throws Exception {
doTest("test.namespace");
doTest("test.TestPackage");
}
public void testNoModifiers() throws Exception {
@@ -133,7 +133,7 @@ public abstract class KotlinLightClassTest extends KotlinAsJavaTestBase {
}
public void testPackage() throws Exception {
checkModifiers("test." + PackageClassUtils.getPackageClassName(new FqName("test")), PUBLIC, FINAL);
checkModifiers("test.TestPackage", PUBLIC, FINAL);
}
}