Skip to content

Commit

Permalink
Merge branch 'jetty-9.4.x' into jetty-9.4.x-5605-wakeup-blocked-threads
Browse files Browse the repository at this point in the history
  • Loading branch information
gregw committed Feb 17, 2021
2 parents bbf26a3 + 1e364ec commit 379d069
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -256,6 +256,9 @@ public void testSetters() throws Exception
assertThat(uri.getPathQuery(), is("/other;xxx/path;ppp?query"));

uri.setPathQuery(null);
assertEquals("http://host:8080?query", uri.toString()); // Yes silly result!

uri.setQuery(null);
assertEquals("http://host:8080", uri.toString());

uri.setPathQuery("/other;xxx/path;ppp?query");
Expand Down

0 comments on commit 379d069

Please sign in to comment.