You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/05/16 10:05:49 UTC

[camel] 03/03: Camel-Test-spring: Polished docs

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

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

commit da994fcbc8b9d8db3c3ed4f37250b56475b7c424
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 16 12:05:24 2019 +0200

    Camel-Test-spring: Polished docs
---
 components/camel-test-spring/src/main/docs/test-spring.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-test-spring/src/main/docs/test-spring.adoc b/components/camel-test-spring/src/main/docs/test-spring.adoc
index 06ee76c..52c160e 100644
--- a/components/camel-test-spring/src/main/docs/test-spring.adoc
+++ b/components/camel-test-spring/src/main/docs/test-spring.adoc
@@ -118,7 +118,7 @@ public class FilterTest extends SpringRunWithTestSupport {
     @EndpointInject("mock:result")
     protected MockEndpoint resultEndpoint;
  
-    @Produce(uri = "direct:start")
+    @Produce("direct:start")
     protected ProducerTemplate template;
  
     @DirtiesContext
@@ -194,7 +194,7 @@ public class FilterTest extends AbstractJUnit4SpringContextTests {
     @EndpointInject("mock:result")
     protected MockEndpoint resultEndpoint;
  
-    @Produce(uri = "direct:start")
+    @Produce("direct:start")
     protected ProducerTemplate template;
  
     @DirtiesContext
@@ -363,7 +363,7 @@ public class CamelSpringJUnit4ClassRunnerPlainTest {
     @EndpointInject(value = "mock:c", context = "camelContext2")
     protected MockEndpoint mockC;
  
-    @Produce(uri = "direct:start2", context = "camelContext2")
+    @Produce("direct:start2", context = "camelContext2")
     protected ProducerTemplate start2;
  
     @EndpointInject(value = "mock:log:org.apache.camel.test.junit4.spring", context = "camelContext2")