summaryrefslogtreecommitdiff
path: root/test/files/run/t3647.scala
diff options
context:
space:
mode:
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)
}