Skip to content

Commit ba6691f

Browse files
committed
nit
1 parent b9c4e45 commit ba6691f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/test/java/org/asynchttpclient/channel/MaxTotalConnectionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class MaxTotalConnectionTest extends AbstractBasicTest {
3333

3434
@Test(groups = "online")
3535
public void testMaxTotalConnectionsExceedingException() throws IOException {
36-
String[] urls = new String[]{"http://google.com", "http://github.com/"};
36+
String[] urls = new String[]{"https://google.com", "https://github.com"};
3737

3838
AsyncHttpClientConfig config = config()
3939
.setConnectTimeout(1000)
@@ -69,7 +69,7 @@ public void testMaxTotalConnectionsExceedingException() throws IOException {
6969

7070
@Test(groups = "online")
7171
public void testMaxTotalConnections() throws Exception {
72-
String[] urls = new String[]{"http://google.com", "http://gatling.io"};
72+
String[] urls = new String[]{"https://google.com", "https://gatling.io"};
7373

7474
final CountDownLatch latch = new CountDownLatch(2);
7575
final AtomicReference<Throwable> ex = new AtomicReference<>();

0 commit comments

Comments
 (0)