Fix broken test

This commit is contained in:
James Agnew 2017-05-15 18:22:46 -04:00
parent 7f2faae85e
commit 4948cdeef5
1 changed files with 1 additions and 1 deletions

View File

@ -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('/');
}
}