Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
adrobisch committed Sep 27, 2024
1 parent b32eeb1 commit 0886683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/scala/scraml/libs/TapirSupportSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ final class TapirSupportSpec
| final case class GetGreetingByPreambleAndDelayParams(preamble: Preamble, delay: Int, name: Option[String] = None, repeat: Option[Int] = None, uppercase: Option[Boolean] = None)
| lazy val getGreetingByPreambleAndDelay = endpoint.get.in("greeting" / path[Preamble]("preamble") / path[Int]("delay")).in(query[Option[String]]("name") and query[Option[Int]]("repeat") and query[Option[Boolean]]("uppercase")).mapInTo[GetGreetingByPreambleAndDelayParams].out(jsonBody[DataType])
| }
| object Upload { lazy val postUpload = endpoint.post.in("upload").in(rawBinaryBody[Any]) }
| object Upload { lazy val postUpload = endpoint.post.in("upload").in(inputStreamBody) }
| }
|}""".stripMargin.stripTrailingSpaces
)
Expand Down

0 comments on commit 0886683

Please sign in to comment.