@@ -50,7 +50,7 @@ public void testNativeTransportWithEpollOnly() throws Exception {
5050 AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).setUseOnlyEpollNativeTransport (true ).build ();
5151
5252 try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient ) asyncHttpClient (config )) {
53- assertDoesNotThrow (() -> client .prepareGet ("https://www.shieldblaze .com" ).execute ().get ());
53+ assertDoesNotThrow (() -> client .prepareGet ("https://www.google .com" ).execute ().get ());
5454 assertInstanceOf (EpollEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
5555 }
5656 }
@@ -60,7 +60,7 @@ public void testNativeTransportWithEpollOnly() throws Exception {
6060 public void testNativeTransportWithoutEpollOnly () throws Exception {
6161 AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).setUseOnlyEpollNativeTransport (false ).build ();
6262 try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient ) asyncHttpClient (config )) {
63- assertDoesNotThrow (() -> client .prepareGet ("https://www.shieldblaze .com" ).execute ().get ());
63+ assertDoesNotThrow (() -> client .prepareGet ("https://www.google .com" ).execute ().get ());
6464 assertInstanceOf (IOUringEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
6565 }
6666 }
@@ -70,7 +70,7 @@ public void testNativeTransportWithoutEpollOnly() throws Exception {
7070 public void testNativeTransportKQueueOnMacOs () throws Exception {
7171 AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).build ();
7272 try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient ) asyncHttpClient (config )) {
73- assertDoesNotThrow (() -> client .prepareGet ("https://www.shieldblaze .com" ).execute ().get ());
73+ assertDoesNotThrow (() -> client .prepareGet ("https://www.google .com" ).execute ().get ());
7474 assertInstanceOf (KQueueEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
7575 }
7676 }
0 commit comments