From cccff99d9ef31905c2d47fbccac01df76592d2c0 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Sun, 13 May 2012 03:47:52 +0400 Subject: [PATCH] fix tests --- compiler/integration-tests/data/antTaskJvm/hello.kt | 2 +- compiler/integration-tests/data/compileAndRunHelloApp/hello.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/integration-tests/data/antTaskJvm/hello.kt b/compiler/integration-tests/data/antTaskJvm/hello.kt index 4c4a4b67c8c..9098e3b590a 100644 --- a/compiler/integration-tests/data/antTaskJvm/hello.kt +++ b/compiler/integration-tests/data/antTaskJvm/hello.kt @@ -1,5 +1,5 @@ package Hello fun main(args : Array) { - System.out?.println("Hello!") + System.out.println("Hello!") } diff --git a/compiler/integration-tests/data/compileAndRunHelloApp/hello.kt b/compiler/integration-tests/data/compileAndRunHelloApp/hello.kt index 4c4a4b67c8c..9098e3b590a 100644 --- a/compiler/integration-tests/data/compileAndRunHelloApp/hello.kt +++ b/compiler/integration-tests/data/compileAndRunHelloApp/hello.kt @@ -1,5 +1,5 @@ package Hello fun main(args : Array) { - System.out?.println("Hello!") + System.out.println("Hello!") }