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 aec372d commit 838444c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ lazy val root = (project in file("."))
name := "fs2-aes",
libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core" % "3.10.2",
"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
"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
)
)

Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/me/wojnowski/fs2/aes/AesPropertyTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import munit.ScalaCheckEffectSuite

class AesPropertyTest extends CatsEffectSuite with ScalaCheckEffectSuite {

override def munitTimeout: Duration = 120.seconds
override def munitIOTimeout: Duration = 120.seconds

val chunkSizeGenerator = Gen.frequency(
(80, Gen.choose(256, 16 * 1024)),
Expand Down

0 comments on commit 838444c

Please sign in to comment.