convert getHttp to getHttps method

This commit is contained in:
Roberto Cirillo 2021-10-07 09:16:42 +02:00
parent 8617614b0e
commit a235ed76a7
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ public class UrlResolverTest {
}
@Test
public void getHttpUrl() throws RemoteBackendException {
String url=client.getHttpUrl().RFile(remotePath);
public void getHttpsUrl() throws RemoteBackendException {
String url=client.getHttpsUrl().RFile(remotePath);
System.out.println("HttpUrl generated: "+url);
}