summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2015-10-21 10:14:52 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2015-10-21 10:14:52 +0200
commitba173164c700698d9469bf289b7b40cc11b4262d (patch)
treedb063368b377ee08f467d0b71824c32fd0a849f3 /test/files/run
parent6e2d7ed0e1b094af5f7500657a9ff36663500cca (diff)
parentb3bffef543e5cbd4e493b7630c8aba00f09ab795 (diff)
downloadscala-ba173164c700698d9469bf289b7b40cc11b4262d.tar.gz
scala-ba173164c700698d9469bf289b7b40cc11b4262d.tar.bz2
scala-ba173164c700698d9469bf289b7b40cc11b4262d.zip
Merge pull request #4795 from SethTisue/windows-ci
improvements to Windows build & test situation
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t7634.check4
-rw-r--r--test/files/run/t7634.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t7634.check b/test/files/run/t7634.check
index 879aea67a2..43128cad95 100644
--- a/test/files/run/t7634.check
+++ b/test/files/run/t7634.check
@@ -1,6 +1,6 @@
-scala> .lines
-res1: List[String] = List(shello, world.)
+scala> .lines.foreach(println)
+shello, world.
scala> :quit
diff --git a/test/files/run/t7634.scala b/test/files/run/t7634.scala
index aeb6a5e671..9520931941 100644
--- a/test/files/run/t7634.scala
+++ b/test/files/run/t7634.scala
@@ -9,7 +9,7 @@ import scala.util.Properties.propOrElse
object Test extends ReplTest {
def java = propOrElse("javacmd", "java")
def code = s""":sh $java -classpath $testOutput hello.Hello
- |.lines""".stripMargin
+ |.lines.foreach(println)""".stripMargin
}
package hello {