aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/imports.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/repl/imports.check')
-rw-r--r--tests/repl/imports.check12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/repl/imports.check b/tests/repl/imports.check
index 3a7e9341e..50b7a93d7 100644
--- a/tests/repl/imports.check
+++ b/tests/repl/imports.check
@@ -7,14 +7,14 @@ defined module o
scala> import o._
import o._
scala> buf += xs
-<console>:11: error: type mismatch:
- found : scala.collection.immutable.List[Int](o.xs)
- required: String
+<console>:11: Error: type mismatch:
+found: scala.collection.immutable.List[Int](o.xs)
+required: String
buf += xs
^
-<console>:11: error: type mismatch:
- found : String
- required: scala.collection.mutable.ListBuffer[Int]
+<console>:11: Error: type mismatch:
+found: String
+required: scala.collection.mutable.ListBuffer[Int]
buf += xs
^
scala> buf ++= xs