Skip to content

Commit 26b4b43

Browse files
committed
Fix tests
1 parent 46c0759 commit 26b4b43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/test-resources/repl/importFromObj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ scala> import o._
77
scala> buf += xs
88
1 | buf += xs
99
| ^^
10-
| Found: List[Int](o.xs)
10+
| Found: (o.xs : List[Int])
1111
| Required: Int
1212
scala> buf ++= xs
1313
val res0: scala.collection.mutable.ListBuffer[Int] = ListBuffer(1, 2, 3)

compiler/test-resources/type-printer/type-mismatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ val res0: Foo[Int] = Foo(1)
55
scala> val x: Foo[String] = res0
66
1 | val x: Foo[String] = res0
77
| ^^^^
8-
| Found: Foo[Int](res0)
8+
| Found: (res0 : Foo[Int])
99
| Required: Foo[String]

0 commit comments

Comments
 (0)