Skip to content

Commit 482c5d3

Browse files
committed
munit: upgrade to v1.1.0
1 parent 266756f commit 482c5d3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ lazy val sharedJavaSettings = List(
139139
val V = new {
140140
val scalameta = "4.12.7"
141141

142-
val munit = "1.0.4"
142+
val munit = "1.1.0"
143143

144144
val coursier = "1.0.27"
145145

tests/tests/src/main/scala/tests/BaseSuite.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ package tests
22

33
import munit.FunSuite
44
import munit.Location
5+
import munit.diff.DiffOptions
56
import tests.markdown.Compat
67

78
class BaseSuite extends FunSuite {
89
def postProcessObtained: Map[Compat.ScalaVersion, String => String] = Map.empty
910
def postProcessExpected: Map[Compat.ScalaVersion, String => String] = Map.empty
1011
override def assertNoDiff(obtained: String, expected: String, clue: => Any)(implicit
11-
loc: Location
12+
loc: Location,
13+
diffOptions: DiffOptions
1214
): Unit = {
1315
super.assertNoDiff(
1416
Compat(processOutput(obtained), Map.empty, postProcessObtained),

0 commit comments

Comments
 (0)