@@ -69,17 +69,11 @@ class AssertionsSuite extends BaseSuite {
69
69
|I found:
70
70
|
71
71
| munit.Compare.compareSubtypeWithSupertype[List[Int], Vector[Int]](
72
- | /* missing */summon[List[Int] <:< Vector[Int]]
73
- | )
72
+ | /* missing */summon[List[Int] <:< Vector[Int]])
74
73
|
75
74
|But no implicit values were found that match type List[Int] <:< Vector[Int].
76
- |
77
- |The following import might make progress towards fixing the problem:
78
- |
79
- | import munit.CustomCompare.fromCustomEquality
80
- |
81
75
|assertEquals(List(1), Vector(1))
82
- | ^
76
+ | ^
83
77
|""" .stripMargin
84
78
else
85
79
""" |error:
@@ -120,13 +114,8 @@ assertEquals(new A, new B)
120
114
| munit.Compare.compareSubtypeWithSupertype[A, B](/* missing */summon[A <:< B])
121
115
|
122
116
|But no implicit values were found that match type A <:< B.
123
- |
124
- |The following import might make progress towards fixing the problem:
125
- |
126
- | import munit.CustomCompare.fromCustomEquality
127
- |
128
117
|assertEquals(new A, new B)
129
- | ^
118
+ | ^
130
119
|""" .stripMargin
131
120
else
132
121
""" |error:
@@ -157,17 +146,11 @@ assertEquals(new A, new B)
157
146
|I found:
158
147
|
159
148
| munit.Compare.compareSubtypeWithSupertype[Char, Int](
160
- | /* missing */summon[Char <:< Int]
161
- | )
149
+ | /* missing */summon[Char <:< Int])
162
150
|
163
151
|But no implicit values were found that match type Char <:< Int.
164
- |
165
- |The following import might make progress towards fixing the problem:
166
- |
167
- | import munit.CustomCompare.fromCustomEquality
168
- |
169
152
|assertEquals('a', 'a'.toInt)
170
- | ^
153
+ | ^
171
154
|""" .stripMargin
172
155
else
173
156
""" |error:
@@ -209,17 +192,11 @@ assertEquals(new A, new B)
209
192
|I found:
210
193
|
211
194
| munit.Compare.compareSubtypeWithSupertype[None.type, Some[Int]](
212
- | /* missing */summon[None.type <:< Some[Int]]
213
- | )
195
+ | /* missing */summon[None.type <:< Some[Int]])
214
196
|
215
197
|But no implicit values were found that match type None.type <:< Some[Int].
216
- |
217
- |The following import might make progress towards fixing the problem:
218
- |
219
- | import munit.CustomCompare.fromCustomEquality
220
- |
221
198
|assertEquals(None, Some(1))
222
- | ^
199
+ | ^
223
200
|""" .stripMargin
224
201
else
225
202
""" |error:
0 commit comments