Disabled a test case that fails intermittently with GitHub Actions.
This commit is contained in:
parent
2f87e4a6b7
commit
cb80c3cc50
|
@ -67,6 +67,7 @@ import org.apache.hc.core5.testing.classic.ClassicTestServer;
|
|||
import org.apache.hc.core5.util.TimeValue;
|
||||
import org.apache.hc.core5.util.Timeout;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.RegisterExtension;
|
||||
|
||||
|
@ -325,7 +326,7 @@ public class TestClientRequestExecution {
|
|||
Assertions.assertEquals(uri, location);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test @Disabled("Fails intermittently with GitHub Actions")
|
||||
public void testRequestCancellation() throws Exception {
|
||||
startServer();
|
||||
final HttpHost target = targetHost();
|
||||
|
|
Loading…
Reference in New Issue