From 1532c82788ab2366df04cac2e418d3db98390ef4 Mon Sep 17 00:00:00 2001 From: Felix Mulder Date: Mon, 19 Sep 2016 20:00:44 +0200 Subject: Remove duplication of console reporters --- tests/repl/imports.check | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'tests/repl/imports.check') diff --git a/tests/repl/imports.check b/tests/repl/imports.check index 50b7a93d7..f9e48c011 100644 --- a/tests/repl/imports.check +++ b/tests/repl/imports.check @@ -7,16 +7,18 @@ defined module o scala> import o._ import o._ scala> buf += xs -:11: Error: type mismatch: -found: scala.collection.immutable.List[Int](o.xs) -required: String -buf += xs - ^ -:11: Error: type mismatch: -found: String -required: scala.collection.mutable.ListBuffer[Int] -buf += xs -^ +-- Error: ------------------------------------------------------------ +10:buf += xs + ^^ + type mismatch: + found: scala.collection.immutable.List[Int](o.xs) + required: String +-- Error: ------------------------------------------------------------ +10:buf += xs + ^^^^^^^^^ + type mismatch: + found: String + required: scala.collection.mutable.ListBuffer[Int] scala> buf ++= xs res1: scala.collection.mutable.ListBuffer[Int] = ListBuffer(1, 2, 3) scala> :quit -- cgit v1.2.3