Skip to content

Commit 832deb2

Browse files
author
Stephane Landelle
committed
Disable tests until Netty AsyncHttpClient#1863 gets fixed
1 parent c79b4a6 commit 832deb2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

providers/netty/src/test/java/org/asynchttpclient/providers/netty/NettyTransferListenerTest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,21 @@
1515
import org.asynchttpclient.AsyncHttpClient;
1616
import org.asynchttpclient.AsyncHttpClientConfig;
1717
import org.asynchttpclient.async.TransferListenerTest;
18+
import org.testng.annotations.Test;
1819

1920
public class NettyTransferListenerTest extends TransferListenerTest {
2021
@Override
2122
public AsyncHttpClient getAsyncHttpClient(AsyncHttpClientConfig config) {
2223
return NettyProviderUtil.nettyProvider(config);
2324
}
25+
26+
@Test(enabled = false)
27+
public void basicPutFileTest() throws Exception {
28+
// FIXME https://github.com/netty/netty/issues/1863
29+
}
30+
31+
@Test(enabled = false)
32+
public void basicPutFileBodyGeneratorTest() throws Exception {
33+
// FIXME https://github.com/netty/netty/issues/1863
34+
}
2435
}

0 commit comments

Comments
 (0)