Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyucht committed Jul 27, 2023
1 parent 7a4ef88 commit 64a2cf4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ void requestUriWithQueryWithForwardSlash() {
// Test that multiple values for the same query parameter are appropriately encoded.
@Test
void requestUriWithQueryWithMultipleValues() {
URI uri = new Request("GET", "/foo").withQueryParam("foo", "bar").withQueryParam("foo", "baz").getUri();
URI uri =
new Request("GET", "/foo")
.withQueryParam("foo", "bar")
.withQueryParam("foo", "baz")
.getUri();
assertEquals("/foo?foo=bar&foo=baz", uri.toString());
}
}

0 comments on commit 64a2cf4

Please sign in to comment.