Skip to content

Commit

Permalink
Merge pull request #962 from kstekovi/WFLY-19826
Browse files Browse the repository at this point in the history
[WFLY-19826] add "/" to the URL
  • Loading branch information
emmartins authored Oct 8, 2024
2 parents 769134f + 28c276a commit 3109bfe
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 3109bfe

Please sign in to comment.