From 2f15c3f81ca50ff3492bfd8dcfe7e67c9c189286 Mon Sep 17 00:00:00 2001 From: geirolz Date: Sun, 9 Jun 2024 15:28:56 +0200 Subject: [PATCH] Fix munit --- core/src/test/scala/fly4s/Fly4sTest.scala | 2 +- project/ProjectDependencies.scala | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/test/scala/fly4s/Fly4sTest.scala b/core/src/test/scala/fly4s/Fly4sTest.scala index 3b7ffed..44c9be9 100644 --- a/core/src/test/scala/fly4s/Fly4sTest.scala +++ b/core/src/test/scala/fly4s/Fly4sTest.scala @@ -9,7 +9,7 @@ class Fly4sTest extends munit.CatsEffectSuite { import fly4s.data.* import fly4s.implicits.* - val fixture: SyncIO[FunFixture[H2Database]] = ResourceFixture( + val fixture: SyncIO[FunFixture[H2Database]] = ResourceFunFixture( H2Database.make( H2Settings.inMemory( name = "h2-test", diff --git a/project/ProjectDependencies.scala b/project/ProjectDependencies.scala index cd8b04d..477f002 100644 --- a/project/ProjectDependencies.scala +++ b/project/ProjectDependencies.scala @@ -7,9 +7,9 @@ object ProjectDependencies { "org.typelevel" %% "cats-effect" % "3.5.4", "org.flywaydb" % "flyway-core" % "10.14.0", // test - "org.scalameta" %% "munit" % "1.0.0" % Test, - "org.typelevel" %% "munit-cats-effect-3" % "2.0.0" % Test, - "com.h2database" % "h2" % "2.2.224" % Test + "org.scalameta" %% "munit" % "1.0.0" % Test, + "org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test, + "com.h2database" % "h2" % "2.2.224" % Test ) lazy val for2_13_Only: Seq[ModuleID] = Seq(