We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 672f70b commit 6b069f0Copy full SHA for 6b069f0
client/src/test/java/org/asynchttpclient/RemoteSiteTest.java
@@ -48,15 +48,6 @@ public void testGoogleCom() throws Exception {
48
}
49
50
51
- @Test(groups = "online")
52
- public void testMailGoogleCom() throws Exception {
53
- try (AsyncHttpClient c = asyncHttpClient(config().setRequestTimeout(10000))) {
54
- Response response = c.prepareGet("http://mail.google.com/").execute().get(10, TimeUnit.SECONDS);
55
- assertNotNull(response);
56
- assertEquals(response.getStatusCode(), 200);
57
- }
58
59
-
60
@Test(groups = "online", enabled = false)
61
// FIXME
62
public void testMicrosoftCom() throws Exception {
0 commit comments