Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import com.proofpoint.http.client.HttpClientConfig;
import org.testng.SkipException;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

public class TestJettyHttpsClientHttp2
extends TestJettyHttpsClient
Expand All @@ -13,4 +13,12 @@ protected HttpClientConfig createClientConfig()
return super.createClientConfig()
.setHttp2Enabled(true);
}

@Override
@Test
public void testConnectReadRequestClose()
{
throw new SkipException("Would need to extend FakeServer to process more HTTP/2 protocol");
}

}