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 2013/10/13 11:15:04 UTC

[08/13] git commit: Fixed test

Fixed test


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

Branch: refs/heads/camel-2.12.x
Commit: 3a8e5764d801edb2ffedb7fa88d412539a4141ea
Parents: f2c48af
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Oct 13 11:01:41 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Oct 13 11:01:57 2013 +0200

----------------------------------------------------------------------
 .../apache/camel/test/blueprint/BlueprintPropertyInjectRoute.java  | 2 +-
 .../java/org/apache/camel/test/blueprint/PropertyInjectTest.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/3a8e5764/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintPropertyInjectRoute.java
----------------------------------------------------------------------
diff --git a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintPropertyInjectRoute.java b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintPropertyInjectRoute.java
index 2f1959c..230aaa8 100644
--- a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintPropertyInjectRoute.java
+++ b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/BlueprintPropertyInjectRoute.java
@@ -26,7 +26,7 @@ public class BlueprintPropertyInjectRoute extends RouteBuilder {
 
     @Override
     public void configure() throws Exception {
-        from("direct:start")
+        from("seda:start")
                 .transform().constant(greeting)
                 .to("{{destination}}");
     }

http://git-wip-us.apache.org/repos/asf/camel/blob/3a8e5764/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/PropertyInjectTest.java
----------------------------------------------------------------------
diff --git a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/PropertyInjectTest.java b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/PropertyInjectTest.java
index 6336f7c..615edd1 100644
--- a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/PropertyInjectTest.java
+++ b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/PropertyInjectTest.java
@@ -29,7 +29,7 @@ public class PropertyInjectTest extends CamelBlueprintTestSupport {
     public void testPropertyInject() throws Exception {
         getMockEndpoint("mock:result").expectedBodiesReceived("Hello");
 
-        template.sendBody("direct:start", "Camel");
+        template.sendBody("seda:start", "Camel");
 
         assertMockEndpointsSatisfied();
     }