aboutsummaryrefslogtreecommitdiff
path: root/tests/repl
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-12-01 13:27:27 +0100
committerFelix Mulder <felix.mulder@gmail.com>2016-12-01 13:27:27 +0100
commit1594bb008221ad26ea8cc1a5f4dacb6f61a4d79b (patch)
treeca65c7308ed6ce1623ba485601080f7f32db9ebe /tests/repl
parent214258f54ebc7f8d9118aa3f84902d3b186742f7 (diff)
downloaddotty-1594bb008221ad26ea8cc1a5f4dacb6f61a4d79b.tar.gz
dotty-1594bb008221ad26ea8cc1a5f4dacb6f61a4d79b.tar.bz2
dotty-1594bb008221ad26ea8cc1a5f4dacb6f61a4d79b.zip
Fix repl tests
Diffstat (limited to 'tests/repl')
-rw-r--r--tests/repl/import.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/repl/import.check b/tests/repl/import.check
index 3ed0fe46c..d53906ddc 100644
--- a/tests/repl/import.check
+++ b/tests/repl/import.check
@@ -7,5 +7,5 @@ val res0: scala.collection.mutable.ListBuffer[Int] = ListBuffer(22)
scala> buf ++= List(1, 2, 3)
val res1: scala.collection.mutable.ListBuffer[Int] = ListBuffer(22, 1, 2, 3)
scala> buf.toList
-val res2: scala.collection.immutable.List[Int] = List(22, 1, 2, 3)
+val res2: List[Int] = List(22, 1, 2, 3)
scala> :quit