@@ -50,7 +50,7 @@ public void testNativeTransportWithEpollOnly() throws Exception {
50
50
AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).setUseOnlyEpollNativeTransport (true ).build ();
51
51
52
52
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 ());
54
54
assertInstanceOf (EpollEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
55
55
}
56
56
}
@@ -60,7 +60,7 @@ public void testNativeTransportWithEpollOnly() throws Exception {
60
60
public void testNativeTransportWithoutEpollOnly () throws Exception {
61
61
AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).setUseOnlyEpollNativeTransport (false ).build ();
62
62
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 ());
64
64
assertInstanceOf (IOUringEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
65
65
}
66
66
}
@@ -70,7 +70,7 @@ public void testNativeTransportWithoutEpollOnly() throws Exception {
70
70
public void testNativeTransportKQueueOnMacOs () throws Exception {
71
71
AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).build ();
72
72
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 ());
74
74
assertInstanceOf (KQueueEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
75
75
}
76
76
}
0 commit comments