This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 1238894 Camel-Http: Fixed scheme with //
1238894 is described below
commit 1238894dc4811dc647454d5b7626254797759723
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Mar 12 09:39:09 2021 +0100
Camel-Http: Fixed scheme with //
---
.../org/apache/camel/component/http/HttpEndpointUriAssemblerTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpEndpointUriAssemblerTest.java
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpEndpointUriAssemblerTest.java
index 2901b9d..c96ed71 100644
---
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpEndpointUriAssemblerTest.java
+++
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpEndpointUriAssemblerTest.java
@@ -52,7 +52,7 @@ public class HttpEndpointUriAssemblerTest {
String uri = assembler.buildUri("https", params);
assertNotNull(uri);
assertEquals(
-
"https:www.google.com?proxyAuthHost=myotherproxy&proxyAuthPassword=RAW(pwd)&proxyAuthPort=2345&proxyAuthUsername=RAW(usr)",
+
"https://www.google.com?proxyAuthHost=myotherproxy&proxyAuthPassword=RAW(pwd)&proxyAuthPort=2345&proxyAuthUsername=RAW(usr)",
uri);
context.stop();