Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgfraser committed Oct 12, 2023
1 parent debd14d commit 97256f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions zio-http/src/test/scala/zio/http/endpoint/RoundtripSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -454,12 +454,12 @@ object RoundtripSpec extends ZIOHttpSpec {

Random.nextBytes(1024 * 1024).timed.flatMap { case (duration, bytes) =>
ZIO.debug("generating bytes took " + duration.render) *>
testEndpoint(
api,
Routes(route),
("xyz", 100, ZStream.fromChunk(bytes).rechunk(1024)),
s"name: xyz, value: 100, count: ${1024 * 1024}",
)
testEndpoint(
api,
Routes(route),
("xyz", 100, ZStream.fromChunk(bytes).rechunk(1024)),
s"name: xyz, value: 100, count: ${1024 * 1024}",
)
}
} @@ ifEnvNotSet("CI"),
).provide(
Expand Down

0 comments on commit 97256f2

Please sign in to comment.