From aa559359bb55729913d34588462542f10c42e147 Mon Sep 17 00:00:00 2001 From: Felix Mulder Date: Wed, 21 Sep 2016 10:09:13 +0200 Subject: Refactor explanation interpolator --- tests/repl/imports.check | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/repl/imports.check') diff --git a/tests/repl/imports.check b/tests/repl/imports.check index f9e48c011..2e8d5dcf9 100644 --- a/tests/repl/imports.check +++ b/tests/repl/imports.check @@ -7,18 +7,18 @@ defined module o scala> import o._ import o._ scala> buf += xs --- Error: ------------------------------------------------------------ +-- [E006] Type Mismatch Error: ------------------------------------------------------------------------------- 10:buf += xs ^^ - type mismatch: found: scala.collection.immutable.List[Int](o.xs) required: String --- Error: ------------------------------------------------------------ + +-- [E006] Type Mismatch 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