Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 321a448

Browse files
author
John Gardiner Myers
committed
Disable test that is flaky under HTTP/2 TLS
1 parent e3eb3c2 commit 321a448

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

http-client/src/test/java/com/proofpoint/http/client/jetty/TestJettyHttpsClientHttp2.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import com.proofpoint.http.client.HttpClientConfig;
44
import org.testng.SkipException;
5-
import org.testng.annotations.BeforeMethod;
5+
import org.testng.annotations.Test;
66

77
public class TestJettyHttpsClientHttp2
88
extends TestJettyHttpsClient
@@ -13,4 +13,12 @@ protected HttpClientConfig createClientConfig()
1313
return super.createClientConfig()
1414
.setHttp2Enabled(true);
1515
}
16+
17+
@Override
18+
@Test
19+
public void testConnectReadRequestClose()
20+
{
21+
throw new SkipException("Would need to extend FakeServer to process more HTTP/2 protocol");
22+
}
23+
1624
}

0 commit comments

Comments
 (0)