Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 4350cb303 -> 945e96af7
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/945e96af Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/945e96af Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/945e96af Branch: refs/heads/3.0.x-fixes Commit: 945e96af7c8b81c2e90e34858da4ed1680a84b3f Parents: 4350cb3 Author: Sergey Beryozkin <[email protected]> Authored: Wed Oct 19 12:52:43 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Wed Oct 19 12:53:54 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/945e96af/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 8a41efa..675490f 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\""));
