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 2015/07/15 14:31:24 UTC

[2/2] camel git commit: undertow async producer

undertow async producer


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

Branch: refs/heads/master
Commit: c08a6050370305af861f47a2805684e47be84352
Parents: d03012b
Author: Claus Ibsen <da...@apache.org>
Authored: Wed Jul 15 14:36:57 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Wed Jul 15 14:36:57 2015 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/undertow/UndertowComponentTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c08a6050/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowComponentTest.java
----------------------------------------------------------------------
diff --git a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowComponentTest.java b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowComponentTest.java
index 91b526d..1262a38 100644
--- a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowComponentTest.java
+++ b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowComponentTest.java
@@ -34,7 +34,7 @@ public class UndertowComponentTest extends BaseUndertowTest {
 
         String response = template.requestBody("undertow:http://localhost:{{port}}/myapp", "Hello Camel!", String.class);
         assertNotNull(response);
-        assertEquals("Hello Camel!", response);
+        assertEquals("Bye Camel!", response);
 
         mockEndpoint.assertIsSatisfied();