Skip to content

Commit

Permalink
munit: upgrade to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitbellew committed Feb 3, 2025
1 parent 266756f commit 482c5d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ lazy val sharedJavaSettings = List(
val V = new {
val scalameta = "4.12.7"

val munit = "1.0.4"
val munit = "1.1.0"

val coursier = "1.0.27"

Expand Down
4 changes: 3 additions & 1 deletion tests/tests/src/main/scala/tests/BaseSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ package tests

import munit.FunSuite
import munit.Location
import munit.diff.DiffOptions
import tests.markdown.Compat

class BaseSuite extends FunSuite {
def postProcessObtained: Map[Compat.ScalaVersion, String => String] = Map.empty
def postProcessExpected: Map[Compat.ScalaVersion, String => String] = Map.empty
override def assertNoDiff(obtained: String, expected: String, clue: => Any)(implicit
loc: Location
loc: Location,
diffOptions: DiffOptions
): Unit = {
super.assertNoDiff(
Compat(processOutput(obtained), Map.empty, postProcessObtained),
Expand Down

0 comments on commit 482c5d3

Please sign in to comment.