Skip to content

Commit 0c0ea13

Browse files
authored
Merge pull request #835 from mzuehlke/scala-3.3.4
Update Scala from 3.3.3 to 3.3.4
2 parents 0ae00aa + e623f91 commit 0c0ea13

File tree

2 files changed

+8
-31
lines changed

2 files changed

+8
-31
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def scala213 = "2.13.15"
77

88
def scala212 = "2.12.20"
99

10-
def scala3 = "3.3.3"
10+
def scala3 = "3.3.4"
1111
def junitVersion = "4.13.2"
1212
def gcp = "com.google.cloud" % "google-cloud-storage" % "2.36.1"
1313
inThisBuild(

tests/shared/src/test/scala/munit/AssertionsSuite.scala

+7-30
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,11 @@ class AssertionsSuite extends BaseSuite {
6969
|I found:
7070
|
7171
| munit.Compare.compareSubtypeWithSupertype[List[Int], Vector[Int]](
72-
| /* missing */summon[List[Int] <:< Vector[Int]]
73-
| )
72+
| /* missing */summon[List[Int] <:< Vector[Int]])
7473
|
7574
|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-
|
8175
|assertEquals(List(1), Vector(1))
82-
| ^
76+
| ^
8377
|""".stripMargin
8478
else
8579
"""|error:
@@ -120,13 +114,8 @@ assertEquals(new A, new B)
120114
| munit.Compare.compareSubtypeWithSupertype[A, B](/* missing */summon[A <:< B])
121115
|
122116
|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-
|
128117
|assertEquals(new A, new B)
129-
| ^
118+
| ^
130119
|""".stripMargin
131120
else
132121
"""|error:
@@ -157,17 +146,11 @@ assertEquals(new A, new B)
157146
|I found:
158147
|
159148
| munit.Compare.compareSubtypeWithSupertype[Char, Int](
160-
| /* missing */summon[Char <:< Int]
161-
| )
149+
| /* missing */summon[Char <:< Int])
162150
|
163151
|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-
|
169152
|assertEquals('a', 'a'.toInt)
170-
| ^
153+
| ^
171154
|""".stripMargin
172155
else
173156
"""|error:
@@ -209,17 +192,11 @@ assertEquals(new A, new B)
209192
|I found:
210193
|
211194
| munit.Compare.compareSubtypeWithSupertype[None.type, Some[Int]](
212-
| /* missing */summon[None.type <:< Some[Int]]
213-
| )
195+
| /* missing */summon[None.type <:< Some[Int]])
214196
|
215197
|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-
|
221198
|assertEquals(None, Some(1))
222-
| ^
199+
| ^
223200
|""".stripMargin
224201
else
225202
"""|error:

0 commit comments

Comments
 (0)