You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/29 13:54:23 UTC

[camel] branch master updated: Fixed test after Jetty upgrade

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new bac48ba  Fixed test after Jetty upgrade
bac48ba is described below

commit bac48bade36dff62c5acbe4d4a5244ed784778ee
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Mar 29 15:54:07 2020 +0200

    Fixed test after Jetty upgrade
---
 .../org/apache/camel/component/cxf/jaxrs/CxfOperationExceptionTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/jaxrs/CxfOperationExceptionTest.java b/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/jaxrs/CxfOperationExceptionTest.java
index fac494d..81821a9 100644
--- a/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/jaxrs/CxfOperationExceptionTest.java
+++ b/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/jaxrs/CxfOperationExceptionTest.java
@@ -56,6 +56,6 @@ public class CxfOperationExceptionTest extends CamelSpringTestSupport {
             Exchange.HTTP_METHOD, "POST", String.class);
 
         assertNotNull(response);
-        assertTrue(response.contains("Problem accessing /CxfOperationExceptionTest/rest"));
+        assertTrue(response.contains("CxfOperationExceptionTest/rest"));
     }
 }