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 <anco...@gmail.com> 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]); }