Skip to content

Upgraded Munit and fixed compilation error #1373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ val osLibDep = "com.lihaoyi" %% "os-lib" % osLibVersion
val log4jApiScalaDep =
"org.apache.logging.log4j" %% "log4j-api-scala" % "13.1.0"

val munitDep = "org.scalameta" %% "munit" % "0.7.29" % Test
val munitDep = "org.scalameta" %% "munit" % "1.0.0" % Test

lazy val scala_libraries_os = (project in file("scala-libraries-os"))
.settings(
Expand Down Expand Up @@ -613,7 +613,7 @@ lazy val cats_effects = (project in file("cats-effects"))
name := "cats-effects",
scalaVersion := scala3Version,
libraryDependencies += catsEffect,
libraryDependencies += "org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test,
libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += "junit" % "junit" % "4.13.2" % Test
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package com.baeldung.munit

import scala.concurrent.Future
import scala.concurrent.ExecutionContext.Implicits.global
import munit.GenericBeforeEach

class MUnitTest extends munit.FunSuite {

Expand Down