We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a306c7c commit 2e7f580Copy full SHA for 2e7f580
src/test/java/robaho/net/httpserver/http2/Http2Test.java
@@ -27,7 +27,6 @@
27
import robaho.net.httpserver.LoggingFilter;
28
29
@Test(enabled=false) // this is disabled since JDK HttpClient cannot perform "prior knowledge" Http2 connections over non-SSL
30
-
31
public class Http2Test {
32
33
static {
@@ -63,7 +62,7 @@ public void tearDown() {
63
62
server.stop(0);
64
}
65
66
- @Test
+ @Test(enabled=false)
67
public void testHttp2Request() throws InterruptedException, IOException, URISyntaxException {
68
var client = HttpClient.newBuilder().version(Version.HTTP_2).build();
69
var request = HttpRequest.newBuilder(new URI("http://localhost:9000"+path)).POST(HttpRequest.BodyPublishers.ofString("This is a test")).build();
0 commit comments