Skip to content

Commit

Permalink
Fix munit
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Jun 9, 2024
1 parent 5f2418d commit 2f15c3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/test/scala/fly4s/Fly4sTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions project/ProjectDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 2f15c3f

Please sign in to comment.