Skip to content

Commit

Permalink
⬆️ Update munit to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwojnowski committed Jul 5, 2024
1 parent 57d18da commit a0b5ad9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ lazy val core =
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.12.0",
"org.typelevel" %% "cats-effect" % "3.5.4",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test,
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test,
"org.typelevel" %% "scalacheck-effect-munit" % "1.0.4" % Test,
"co.fs2" %% "fs2-core" % "3.10.2" % Test
"org.scalameta" %% "munit" % "1.0.0" % Test,
"org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test,
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
"org.typelevel" %% "scalacheck-effect-munit" % "2.0.0-M2" % Test,
"co.fs2" %% "fs2-core" % "3.10.2" % Test
)
)

Expand All @@ -45,8 +45,8 @@ lazy val circe =
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % "0.14.9",
"io.circe" %% "circe-literal" % "0.14.9" % Test,
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test
"org.scalameta" %% "munit" % "1.0.0" % Test,
"org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test
)
)

Expand Down
2 changes: 1 addition & 1 deletion core/src/test/scala/me/wojnowski/scuid/CollisionTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import munit.CatsEffectSuite

class CollisionTest extends CatsEffectSuite {

override def munitTimeout: Duration = 20.minutes
override def munitIOTimeout: Duration = 20.minutes

test("Check for collisions") {
val parallelism = Runtime.getRuntime.availableProcessors
Expand Down

0 comments on commit a0b5ad9

Please sign in to comment.