summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-03-15 10:25:33 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2015-04-21 10:16:58 -0700
commit1e4a1253cba09ae12a66c18816e0940ab8d36095 (patch)
tree59f2c9f7c4e7883a6418489be0af76aaf70897f6
parentc9b1329477bb831326d32c068b67ae055b4d3419 (diff)
downloadscala-1e4a1253cba09ae12a66c18816e0940ab8d36095.tar.gz
scala-1e4a1253cba09ae12a66c18816e0940ab8d36095.tar.bz2
scala-1e4a1253cba09ae12a66c18816e0940ab8d36095.zip
Remove stdout/stderr output from Junit tests
-rw-r--r--test/junit/scala/collection/mutable/VectorTest.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/junit/scala/collection/mutable/VectorTest.scala b/test/junit/scala/collection/mutable/VectorTest.scala
index e9c4d44a72..b3219d1b02 100644
--- a/test/junit/scala/collection/mutable/VectorTest.scala
+++ b/test/junit/scala/collection/mutable/VectorTest.scala
@@ -38,7 +38,6 @@ class VectorTest {
def iteratorCat() {
def its = vecs.map(_.toList.toIterator)
val cats = vecs.map(a => its.map(a ++ _))
- println(cats)
assert( cats == ans )
}