Fix broken test
This commit is contained in:
parent
7f2faae85e
commit
4948cdeef5
|
@ -90,7 +90,7 @@ public class HttpGetClientInvocation extends BaseHttpClientInvocation {
|
|||
|
||||
if (!myUrlPath.contains("://")) {
|
||||
b.append(theUrlBase);
|
||||
if (!theUrlBase.endsWith("/")) {
|
||||
if (!theUrlBase.endsWith("/") && !myUrlPath.startsWith("/")) {
|
||||
b.append('/');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue