summaryrefslogtreecommitdiff
path: root/test/files/run/t3647.scala
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2011-11-07 09:55:53 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2011-11-07 09:55:53 +0000
commit44b32ff306ce4dfe171db00d6b37df65467f3f46 (patch)
treeccf6907387ed6a0304c8d3fc8b83f1964a05713f /test/files/run/t3647.scala
parente196a153ccb69aed372b219ed18471a4fe29391e (diff)
downloadscala-44b32ff306ce4dfe171db00d6b37df65467f3f46.tar.gz
scala-44b32ff306ce4dfe171db00d6b37df65467f3f46.tar.bz2
scala-44b32ff306ce4dfe171db00d6b37df65467f3f46.zip
Backport of r25948
Diffstat (limited to 'test/files/run/t3647.scala')
-rw-r--r--test/files/run/t3647.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t3647.scala b/test/files/run/t3647.scala
index a970e887f6..434a13f414 100644
--- a/test/files/run/t3647.scala
+++ b/test/files/run/t3647.scala
@@ -13,10 +13,10 @@ object Test {
"line4"
).iterator)
assert(ps.filter(_ == '\n').size == 3)
-
+
val ps1 = PagedSeq.fromLines(List("Ok").iterator)
assert(ps1.filter(_ == '\n').size == 0)
-
+
val eps = PagedSeq.fromLines(List().iterator)
assert(eps.filter(_ == '\n').size == 0)
}