Repository: cxf Updated Branches: refs/heads/3.1.x-fixes a05c7c9b7 -> a5dec2588
Fixing test in 3.1.x/3.0.x, Jetty can not handle servlet patterns if matrix params are injected Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a5dec258 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a5dec258 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a5dec258 Branch: refs/heads/3.1.x-fixes Commit: a5dec2588999596e0597fef0254b3926eff518b6 Parents: a05c7c9 Author: Sergey Beryozkin <[email protected]> Authored: Wed Oct 19 12:52:43 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Wed Oct 19 12:52:43 2016 +0100 ---------------------------------------------------------------------- .../apache/cxf/systest/jaxrs/JAXRSClientServerSpringBookTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/a5dec258/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerSpringBookTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerSpringBookTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerSpringBookTest.java index f3f6058..ddaf103 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerSpringBookTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerSpringBookTest.java @@ -135,7 +135,7 @@ public class JAXRSClientServerSpringBookTest extends AbstractBusClientServerTest } @Test public void testGetServicesPageWithServletPatternMatchOnly2() throws Exception { - final String address = "http://localhost:" + PORT + "/services;a=b;/list;a=b/;a=b"; + final String address = "http://localhost:" + PORT + "/services/list/;a=b"; WebClient wc = WebClient.create(address).accept("text/*"); String s = wc.get(String.class); assertTrue(s.contains("href=\"/services/list/?stylesheet=1\""));
