Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Bump up munit
Browse files Browse the repository at this point in the history
  • Loading branch information
filosganga committed Jan 24, 2023
1 parent b5c11c9 commit 0f14053
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ lazy val http4sVersion = "0.23.17"
lazy val micrometerVersion = "1.7.5"
lazy val catsEffectVersion = "3.3.0"
lazy val scalaTestVersion = "3.2.10"
lazy val munitVersion = "0.7.29"
lazy val munitCatsEffect3Version = "1.0.7"
lazy val munitVersion = "1.0.0-M7"
lazy val munitCatsEffectVersion = "2.0.0-M3"
lazy val slf4jVersion = "1.7.32"

Global / excludeLintKeys += Compile / console / scalacOptions
Expand Down Expand Up @@ -62,7 +62,7 @@ lazy val `http4s-micrometer-metrics` = (project in file("."))
"org.http4s" %% "http4s-dsl" % http4sVersion % Test,
"org.http4s" %% "http4s-client" % http4sVersion % Test,
"org.scalameta" %% "munit" % munitVersion % Test,
"org.typelevel" %% "munit-cats-effect-3" % munitCatsEffect3Version % Test,
"org.typelevel" %% "munit-cats-effect" % munitCatsEffectVersion % Test,
"org.slf4j" % "slf4j-nop" % slf4jVersion % Test
)
)
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.5
sbt.version=1.8.2
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import org.http4s.metrics.micrometer.util._
class MicrometerClientMetricsSuite extends munit.CatsEffectSuite {

def resourcesWithClassifier(classifierF: Request[IO] => Option[String] = _ => None) =
ResourceFixture {
ResourceFunFixture {
meterRegistryResource.evalMap { registry =>
implicit val clock = FakeClock[IO]
val config: Config = Config("client.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MicrometerServerMetricsSuite extends munit.CatsEffectSuite {
tags: Tags = Tags.empty(),
classifierF: Request[IO] => Option[String] = _ => None
) =
ResourceFixture {
ResourceFunFixture {
meterRegistryResource.evalMap { registry =>
implicit val clock = FakeClock[IO]
val config: Config = Config("server.", tags)
Expand Down

0 comments on commit 0f14053

Please sign in to comment.