Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4BF651745C for ; Wed, 2 Sep 2015 23:39:14 +0000 (UTC) Received: (qmail 21717 invoked by uid 500); 2 Sep 2015 23:39:11 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 21653 invoked by uid 500); 2 Sep 2015 23:39:11 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 21640 invoked by uid 99); 2 Sep 2015 23:39:11 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Sep 2015 23:39:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D16DBDF99D; Wed, 2 Sep 2015 23:39:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: janstey@apache.org To: commits@camel.apache.org Date: Wed, 02 Sep 2015 23:39:11 -0000 Message-Id: <6f2d350b536a436e84809bc0ae25a4f5@git.apache.org> In-Reply-To: <4a9b4bde8dad40b5980943027648e056@git.apache.org> References: <4a9b4bde8dad40b5980943027648e056@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] camel git commit: Fix CS Fix CS Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4f3ccee4 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4f3ccee4 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4f3ccee4 Branch: refs/heads/master Commit: 4f3ccee409c039647dbc4f0bdbcbbcdacded40ca Parents: b975c30 Author: Jonathan Anstey Authored: Wed Sep 2 21:04:51 2015 -0230 Committer: Jonathan Anstey Committed: Wed Sep 2 21:04:51 2015 -0230 ---------------------------------------------------------------------- .../java/org/apache/camel/component/http4/HttpPathTest.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4f3ccee4/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpPathTest.java ---------------------------------------------------------------------- diff --git a/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpPathTest.java b/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpPathTest.java index fe6f0f1..465854f 100644 --- a/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpPathTest.java +++ b/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpPathTest.java @@ -84,8 +84,7 @@ public class HttpPathTest extends BaseHttpTest { @Test public void httpPathHeaderWithStaticQueryParams() throws Exception { - Exchange exchange = template.request("http4://" + localServer.getInetAddress().getHostName() + ":" + localServer.getLocalPort() + - "?abc=123", new Processor() { + Exchange exchange = template.request("http4://" + localServer.getInetAddress().getHostName() + ":" + localServer.getLocalPort() + "?abc=123", new Processor() { public void process(Exchange exchange) throws Exception { exchange.getIn().setHeader(Exchange.HTTP_PATH, "testWithQueryParams"); } @@ -97,8 +96,7 @@ public class HttpPathTest extends BaseHttpTest { @Test public void httpPathHeaderWithBaseSlashesAndWithStaticQueryParams() throws Exception { - Exchange exchange = template.request("http4://" + localServer.getInetAddress().getHostName() + ":" + localServer.getLocalPort() + "/" + - "?abc=123", new Processor() { + Exchange exchange = template.request("http4://" + localServer.getInetAddress().getHostName() + ":" + localServer.getLocalPort() + "/" + "?abc=123", new Processor() { public void process(Exchange exchange) throws Exception { exchange.getIn().setHeader(Exchange.HTTP_PATH, "/testWithQueryParams"); }