summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-04-19 20:30:11 +0000
committerLex Spoon <lex@lexspoon.org>2007-04-19 20:30:11 +0000
commit2e68f5404ab619d024e712115d1e2f362ea4c54a (patch)
tree2ecf8d6451222ff7e144404725ede6c42cf6935b
parentddaba1cd9841a96a89deced6c17f2a8dc388accc (diff)
downloadscala-2e68f5404ab619d024e712115d1e2f362ea4c54a.tar.gz
scala-2e68f5404ab619d024e712115d1e2f362ea4c54a.tar.bz2
scala-2e68f5404ab619d024e712115d1e2f362ea4c54a.zip
added a new line at the end, so that hopefully ...
added a new line at the end, so that hopefully the test is more robust on different machines
-rw-r--r--test/files/run/interpreter.check2
-rw-r--r--test/files/run/interpreter.scala1
2 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/interpreter.check b/test/files/run/interpreter.check
index 4ed43dc851..eed38d2b65 100644
--- a/test/files/run/interpreter.check
+++ b/test/files/run/interpreter.check
@@ -132,4 +132,4 @@ scala>
scala> two: Int = 2
scala>
-scala> \ No newline at end of file
+scala>
diff --git a/test/files/run/interpreter.scala b/test/files/run/interpreter.scala
index 8c06d4c70d..22dbf4754d 100644
--- a/test/files/run/interpreter.scala
+++ b/test/files/run/interpreter.scala
@@ -82,5 +82,6 @@ val two = one + x5
val input = new BufferedReader(new StringReader(testCodeString))
val repl = new InterpreterLoop(input, new PrintWriter(Console.out))
repl.main(new Settings)
+ println()
}
}