summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/streams.check4
-rw-r--r--test/files/run/streams.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/streams.check b/test/files/run/streams.check
index 4942b319c8..180217df4a 100644
--- a/test/files/run/streams.check
+++ b/test/files/run/streams.check
@@ -15,5 +15,5 @@ Stream()
Stream(1, 2)
Stream()
-49999
-32768
+9999
+8192
diff --git a/test/files/run/streams.scala b/test/files/run/streams.scala
index 80fedb38ce..5f61cb11af 100644
--- a/test/files/run/streams.scala
+++ b/test/files/run/streams.scala
@@ -22,7 +22,7 @@ object Test extends Application {
println(s2.dropWhile(_ > 0))
println
- val s3 = Stream.range(1, 50000) //100000 (ticket #153: Stackoverflow)
+ val s3 = Stream.range(1, 10000) //100000 (ticket #153: Stackoverflow)
println(s3.length)
// ticket #153