Skip to content

Commit

Permalink
Run sbt fix
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández <[email protected]>
  • Loading branch information
alejandrohdezma committed Jan 6, 2025
1 parent 143d946 commit f7c4b26
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ trait Http4sMUnitSyntax extends Http4sDsl[IO] with Http4sClientDsl[IO] with AllS

}

case class ContextNotFound(request: Request[IO])
case class ContextNotFound(request: Request[IO]) // scalafix:ok
extends RuntimeException(s"Auth context not found on request $request, remember to add one with `.context()`")
with NoStackTrace

Expand Down
11 changes: 8 additions & 3 deletions modules/http4s-munit/src/main/scala/munit/Http4sSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,14 @@ trait Http4sSuite extends CatsEffectSuite with Http4sMUnitSyntax {
followingRequests: List[String],
testOptions: TestOptions,
config: Http4sMUnitConfig
): String = Http4sMUnitDefaults.http4sMUnitNameCreator(
request, followingRequests, testOptions, config, http4sMUnitNameCreatorReplacements()
)
): String =
Http4sMUnitDefaults.http4sMUnitNameCreator(
request,
followingRequests,
testOptions,
config,
http4sMUnitNameCreatorReplacements()
)

/** List of replacements that will be applied to the result of `http4sMUnitNameCreator` using `String#replaceAll` */
@deprecated(
Expand Down

0 comments on commit f7c4b26

Please sign in to comment.