Re-enable HttpClientTransportOverHTTP2Test.testExternalServer

+ and tag as `@Tag("external")` as appropriate
This commit is contained in:
Joakim Erdfelt 2023-04-24 14:17:29 -05:00
parent edc16869bd
commit 64aa34aab5
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 0 additions and 4 deletions

View File

@ -78,7 +78,6 @@ import org.eclipse.jetty.util.BufferUtil;
import org.eclipse.jetty.util.Callback;
import org.eclipse.jetty.util.ssl.SslContextFactory;
import org.eclipse.jetty.util.thread.QueuedThreadPool;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
@ -736,7 +735,6 @@ public class HttpClientTransportOverHTTP2Test extends AbstractTest
});
}
@Disabled
@Test
@Tag("external")
public void testExternalServer() throws Exception
@ -750,9 +748,7 @@ public class HttpClientTransportOverHTTP2Test extends AbstractTest
clientConnector.setExecutor(executor);
httpClient.start();
// ContentResponse response = httpClient.GET("https://http2.akamai.com/");
ContentResponse response = httpClient.GET("https://webtide.com/");
assertEquals(HttpStatus.OK_200, response.getStatus());
httpClient.stop();