Skip to content

Commit 2f15c3f

Browse files
committed
Fix munit
1 parent 5f2418d commit 2f15c3f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/test/scala/fly4s/Fly4sTest.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Fly4sTest extends munit.CatsEffectSuite {
99
import fly4s.data.*
1010
import fly4s.implicits.*
1111

12-
val fixture: SyncIO[FunFixture[H2Database]] = ResourceFixture(
12+
val fixture: SyncIO[FunFixture[H2Database]] = ResourceFunFixture(
1313
H2Database.make(
1414
H2Settings.inMemory(
1515
name = "h2-test",

project/ProjectDependencies.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ object ProjectDependencies {
77
"org.typelevel" %% "cats-effect" % "3.5.4",
88
"org.flywaydb" % "flyway-core" % "10.14.0",
99
// test
10-
"org.scalameta" %% "munit" % "1.0.0" % Test,
11-
"org.typelevel" %% "munit-cats-effect-3" % "2.0.0" % Test,
12-
"com.h2database" % "h2" % "2.2.224" % Test
10+
"org.scalameta" %% "munit" % "1.0.0" % Test,
11+
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
12+
"com.h2database" % "h2" % "2.2.224" % Test
1313
)
1414

1515
lazy val for2_13_Only: Seq[ModuleID] = Seq(

0 commit comments

Comments
 (0)