[JAVA-11283] Use https link for short url

This commit is contained in:
Haroon Khan
2022-04-11 19:16:04 +01:00
parent 813b27588e
commit 55deea7849
2 changed files with 3 additions and 3 deletions
@@ -33,8 +33,8 @@ public class HttpClientExpandUrlLiveTest {
@Test
public final void givenShortenedOnce_whenUrlIsExpanded_thenCorrectResult() throws IOException {
final String expectedResult = "http://www.baeldung.com/rest-versioning";
final String actualResult = expandSingleLevel("http://bit.ly/13jEoS1");
final String expectedResult = "https://www.baeldung.com/rest-versioning";
final String actualResult = expandSingleLevel("http://bit.ly/3LScTri");
assertThat(actualResult, equalTo(expectedResult));
}