Skip to content

Commit 1594bb0

Browse files
committed
Fix repl tests
1 parent 214258f commit 1594bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/repl/import.check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ val res0: scala.collection.mutable.ListBuffer[Int] = ListBuffer(22)
77
scala> buf ++= List(1, 2, 3)
88
val res1: scala.collection.mutable.ListBuffer[Int] = ListBuffer(22, 1, 2, 3)
99
scala> buf.toList
10-
val res2: scala.collection.immutable.List[Int] = List(22, 1, 2, 3)
10+
val res2: List[Int] = List(22, 1, 2, 3)
1111
scala> :quit

0 commit comments

Comments
 (0)