Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
varshith257 committed Sep 25, 2024
1 parent bec2aa0 commit d366e5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zio-http/jvm/src/test/scala/zio/http/ConformanceSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,9 @@ object ConformanceSpec extends ZIOHttpSpec {
responseValid <- app.runZIO(Request.get("/valid"))
responseInvalid <- app.runZIO(Request.get("/invalid"))
} yield assertTrue(
responseValid.status == Status.ContentTooLarge,
responseValid.status == Status.RequestEntityTooLarge,
responseValid.headers.contains(Header.RetryAfter.name),
responseInvalid.status == Status.ContentTooLarge,
responseInvalid.status == Status.RequestEntityTooLarge,
!responseInvalid.headers.contains(Header.RetryAfter.name),
)
},
Expand Down

0 comments on commit d366e5d

Please sign in to comment.