Package names unified in test data
This commit is contained in:
@@ -31,7 +31,7 @@ public class AntTaskTest extends KotlinIntegrationTestBase {
|
|||||||
String runtime = new File("dist/kotlinc/lib/kotlin-runtime.jar").getAbsolutePath();
|
String runtime = new File("dist/kotlinc/lib/kotlin-runtime.jar").getAbsolutePath();
|
||||||
|
|
||||||
assertEquals("compilation failed", 0, runAnt("build.log", "build.xml", extraJavaArgs));
|
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
|
@Test
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package Hello
|
package hello
|
||||||
|
|
||||||
fun main(args : Array<String>) {
|
fun main(args : Array<String>) {
|
||||||
for (s in arrayList("a"))
|
for (s in arrayList("a"))
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package Hello
|
package hello
|
||||||
|
|
||||||
fun main(args : Array<String>) {
|
fun main(args : Array<String>) {
|
||||||
for (s in arrayList("a"))
|
for (s in arrayList("a"))
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
package Hello
|
package hello
|
||||||
|
|
||||||
fun foo() {}
|
fun foo() {}
|
||||||
Reference in New Issue
Block a user