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 2016/05/28 06:55:16 UTC

[7/8] camel git commit: tests ensures that job in dynamic headers don't need to exists

tests ensures that job in dynamic headers don't need to exists


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a6384db3
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a6384db3
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a6384db3

Branch: refs/heads/master
Commit: a6384db387da5013ca0df6a40efb8d29121d6640
Parents: 1294e42
Author: Joseluis Pedrosa <jo...@elephanttalk.com>
Authored: Fri May 27 13:00:22 2016 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat May 28 08:48:19 2016 +0200

----------------------------------------------------------------------
 .../camel/component/spring/batch/SpringBatchEndpointTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a6384db3/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java
----------------------------------------------------------------------
diff --git a/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java b/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java
index b67237c..e596955 100644
--- a/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java
+++ b/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java
@@ -76,7 +76,7 @@ public class SpringBatchEndpointTest extends CamelTestSupport {
             public void configure() throws Exception {
                 from("direct:start").to("spring-batch:mockJob").to("mock:test");
                 from("direct:dynamic").
-                        to("spring-batch:mockJob?jobFromHeader=true").
+                        to("spring-batch:fake?jobFromHeader=true").
                         errorHandler(deadLetterChannel("mock:error")).
                         to("mock:test");
             }