From commits-return-70261-archive-asf-public=cust-asf.ponee.io@camel.apache.org Fri Mar 1 07:35:00 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7B329180676 for ; Fri, 1 Mar 2019 08:34:59 +0100 (CET) Received: (qmail 12430 invoked by uid 500); 1 Mar 2019 07:34:58 -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 12404 invoked by uid 99); 1 Mar 2019 07:34:58 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Mar 2019 07:34:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 9859582E8C; Fri, 1 Mar 2019 07:34:57 +0000 (UTC) Date: Fri, 01 Mar 2019 07:34:58 +0000 To: "commits@camel.apache.org" Subject: [camel] 01/02: Fixed CS for Camel-http-common MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: acosentino@apache.org In-Reply-To: <155142569705.30777.14000303410450919973@gitbox.apache.org> References: <155142569705.30777.14000303410450919973@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: camel X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: c1440e163d54e0436c3297411a30d405a485c72e X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190301073457.9859582E8C@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git commit c1440e163d54e0436c3297411a30d405a485c72e Author: Andrea Cosentino AuthorDate: Fri Mar 1 08:28:46 2019 +0100 Fixed CS for Camel-http-common --- .../java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java b/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java index 141056a..63766e6 100644 --- a/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java +++ b/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java @@ -75,7 +75,7 @@ public class HttpSendDynamicAwareTest { @Test public void testHttpsPort443ParseUri() { this.httpSendDynamicAware.setScheme("https"); - DynamicAwareEntry entry = new DynamicAwareEntry("https://localhost:443/test", null, null,null); + DynamicAwareEntry entry = new DynamicAwareEntry("https://localhost:443/test", null, null, null); String[] result = httpSendDynamicAware.parseUri(entry); assertEquals("Parse should not port if https and port 443 specified", "localhost", result[0]); }