Skip to content

Commit

Permalink
[WFLY-19826] add "/" to the URL
Browse files Browse the repository at this point in the history
  • Loading branch information
kstekovi committed Oct 8, 2024
1 parent 769134f commit 28c276a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void testHelloSpringResource() throws Exception {
.setScheme("http")
.setHost(url.getHost())
.setPort(url.getPort())
.setPath(url.getPath() + "queryParam")
.setPath(url.getPath() + "/queryParam")
.setParameter("param", "hello world")
.build();
HttpGet method = new HttpGet(uri);
Expand Down

0 comments on commit 28c276a

Please sign in to comment.