summaryrefslogtreecommitdiff
path: root/test/files/run/groupby.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/groupby.scala')
-rw-r--r--test/files/run/groupby.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/groupby.scala b/test/files/run/groupby.scala
index a751e65e80..fe08f52812 100644
--- a/test/files/run/groupby.scala
+++ b/test/files/run/groupby.scala
@@ -3,8 +3,8 @@
// Fixes #3422
object Test {
-
- def main(args: Array[String]) {
+
+ def main(args: Array[String]) {
val arr = Array.range(0,10)
val map = arr groupBy (_%2)
val v1 = map(0)
@@ -14,5 +14,5 @@ object Test {
// hash map by default.
assert(v1 eq v2)
}
-
+
}