Package names unified in test data

This commit is contained in:
Andrey Breslav
2013-10-08 19:10:51 +04:00
parent a985882baf
commit 5aa8aa4550
4 changed files with 4 additions and 4 deletions
@@ -31,7 +31,7 @@ public class AntTaskTest extends KotlinIntegrationTestBase {
String runtime = new File("dist/kotlinc/lib/kotlin-runtime.jar").getAbsolutePath();
assertEquals("compilation failed", 0, runAnt("build.log", "build.xml", extraJavaArgs));
runJava("hello.run", "-cp", jar + File.pathSeparator + runtime, "Hello.HelloPackage");
runJava("hello.run", "-cp", jar + File.pathSeparator + runtime, "hello.HelloPackage");
}
@Test
@@ -1,4 +1,4 @@
package Hello
package hello
fun main(args : Array<String>) {
for (s in arrayList("a"))
@@ -1,4 +1,4 @@
package Hello
package hello
fun main(args : Array<String>) {
for (s in arrayList("a"))
@@ -1,3 +1,3 @@
package Hello
package hello
fun foo() {}