Skip to content

Commit

Permalink
fixup! Fix convertToFinagleRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
yuokada committed Aug 31, 2023
1 parent 1ac857f commit bac9203
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class FinagleTest extends AirSpec {
response.path shouldBe "/foo"
response.params.contains("bar") shouldBe true
response.params.contains("baz") shouldBe true
response.params.get("bar") shouldBe Option(true)
response.params.getInt("baz") shouldBe Option(1234)
response.params.get("bar") shouldBe Some(true)
response.params.getInt("baz") shouldBe Some(1234)
}
test("POST with request body") {
val req = HttpMessage
Expand Down

0 comments on commit bac9203

Please sign in to comment.