Skip to content

Commit bda15a7

Browse files
committed
Upgraded Munit and fixed compilation error
1 parent 1b67399 commit bda15a7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ val osLibDep = "com.lihaoyi" %% "os-lib" % osLibVersion
444444
val log4jApiScalaDep =
445445
"org.apache.logging.log4j" %% "log4j-api-scala" % "13.1.0"
446446

447-
val munitDep = "org.scalameta" %% "munit" % "0.7.29" % Test
447+
val munitDep = "org.scalameta" %% "munit" % "1.0.0" % Test
448448

449449
lazy val scala_libraries_os = (project in file("scala-libraries-os"))
450450
.settings(
@@ -613,7 +613,7 @@ lazy val cats_effects = (project in file("cats-effects"))
613613
name := "cats-effects",
614614
scalaVersion := scala3Version,
615615
libraryDependencies += catsEffect,
616-
libraryDependencies += "org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test,
616+
libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
617617
libraryDependencies ++= scalaTestDeps,
618618
libraryDependencies += "junit" % "junit" % "4.13.2" % Test
619619
)

scala-libraries-testing/src/test/scala/com/baeldung/munit/MUnitTest.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package com.baeldung.munit
22

33
import scala.concurrent.Future
44
import scala.concurrent.ExecutionContext.Implicits.global
5-
import munit.GenericBeforeEach
65

76
class MUnitTest extends munit.FunSuite {
87

0 commit comments

Comments
 (0)