summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-12-14 10:51:01 +0000
committermichelou <michelou@epfl.ch>2007-12-14 10:51:01 +0000
commit0d5c56f023c3215defd1bace39276607d47e953c (patch)
treea762a0f1efb1e55a2c5bdb8af9fb7f73213b785b
parent9752b4da2ab22afdef95d223c420c3b0cb1dce10 (diff)
downloadscala-0d5c56f023c3215defd1bace39276607d47e953c.tar.gz
scala-0d5c56f023c3215defd1bace39276607d47e953c.tar.bz2
scala-0d5c56f023c3215defd1bace39276607d47e953c.zip
#153 still not fixed..
-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 f36b719ac1..4942b319c8 100644
--- a/test/files/run/streams.check
+++ b/test/files/run/streams.check
@@ -15,5 +15,5 @@ Stream()
Stream(1, 2)
Stream()
-99999
-65536
+49999
+32768
diff --git a/test/files/run/streams.scala b/test/files/run/streams.scala
index 19bb9c943d..80fedb38ce 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, 100000) // ticket #153: Stackoverflow
+ val s3 = Stream.range(1, 50000) //100000 (ticket #153: Stackoverflow)
println(s3.length)
// ticket #153