This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 4bb80cb CAMEL-16861: Cleanup and update EIP docs
4bb80cb is described below
commit 4bb80cb25244c35218e5f1d6deaf3f038924d6e0
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Sep 23 15:50:30 2021 +0200
CAMEL-16861: Cleanup and update EIP docs
---
.../camel/processor/intercept/InterceptSendToEndpointAfterTest.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/core/camel-core/src/test/java/org/apache/camel/processor/intercept/InterceptSendToEndpointAfterTest.java
b/core/camel-core/src/test/java/org/apache/camel/processor/intercept/InterceptSendToEndpointAfterTest.java
index 4a5852c..ebb5780 100644
---
a/core/camel-core/src/test/java/org/apache/camel/processor/intercept/InterceptSendToEndpointAfterTest.java
+++
b/core/camel-core/src/test/java/org/apache/camel/processor/intercept/InterceptSendToEndpointAfterTest.java
@@ -37,7 +37,7 @@ public class InterceptSendToEndpointAfterTest extends
ContextTestSupport {
public void configure() throws Exception {
context.setTracing(true);
-
interceptSendToEndpoint("mock:foo").to("mock:detour").transform(constant("Bye
World")).afterUrl("direct:after");
+
interceptSendToEndpoint("mock:foo").to("mock:detour").transform(constant("Bye
World")).afterUri("direct:after");
from("direct:first").to("mock:bar").to("mock:foo").to("mock:result");
@@ -84,7 +84,7 @@ public class InterceptSendToEndpointAfterTest extends
ContextTestSupport {
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
-
interceptSendToEndpoint("direct:start").to("mock:detour").afterUrl("mock:after");
+
interceptSendToEndpoint("direct:start").to("mock:detour").afterUri("mock:after");
from("direct:start").to("mock:foo").transform().constant("Bye
World");
}
@@ -106,7 +106,7 @@ public class InterceptSendToEndpointAfterTest extends
ContextTestSupport {
@Override
public void configure() throws Exception {
interceptSendToEndpoint("direct:start").when(simple("${body}
contains 'World'")).to("mock:detour")
- .afterUrl("mock:after");
+ .afterUri("mock:after");
from("direct:start").to("mock:foo").transform().constant("Bye
World");
}