This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch CAMEL-12462 in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/CAMEL-12462 by this push: new 896a8c2 CAMEL-12462: Fixed typo. Thanks to Dmitry Volodin for spotting this. 896a8c2 is described below commit 896a8c23def41406c99d12aba0ec95efb8002caa Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Apr 25 09:27:39 2018 +0200 CAMEL-12462: Fixed typo. Thanks to Dmitry Volodin for spotting this. --- .../org/apache/camel/component/http/HttpSendDynamicAwareTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareTest.java b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareTest.java index f7a09c7..7885f41 100644 --- a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareTest.java +++ b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareTest.java @@ -65,7 +65,7 @@ public class HttpSendDynamicAwareTest extends BaseHttpTest { from("direct:joes") .toD("http://localhost:" + PORT + "/joes?throwExceptionOnFailure=false&drink=${header.drink}"); - from("direct:vokda") + from("direct:vodka") // these 2 headers should not be in use when using toD .setHeader(Exchange.HTTP_PATH, constant("shouldnotcauseproblems")) .setHeader(Exchange.HTTP_QUERY, constant("drink=coke")) @@ -82,7 +82,7 @@ public class HttpSendDynamicAwareTest extends BaseHttpTest { out = fluentTemplate.to("direct:joes").withHeader("drink", "wine").request(String.class); assertEquals("Drinking wine", out); - out = fluentTemplate.to("direct:vokda").clearHeaders().request(String.class); + out = fluentTemplate.to("direct:vodka").clearHeaders().request(String.class); assertEquals("Drinking vodka", out); // and there should only be one http endpoint as they are both on same host -- To stop receiving notification emails like this one, please contact davscl...@apache.org.