Fix test compilation error

This commit is contained in:
Ioannis Kakavas 2020-01-31 09:23:02 +02:00
parent 72ae0ca73f
commit 46ffc57abe
1 changed files with 2 additions and 1 deletions

View File

@ -431,7 +431,8 @@ public class TcpTransportTests extends ESTestCase {
channel.addCloseListener(listener); channel.addCloseListener(listener);
TcpTransport.handleException(channel, exception, lifecycle, TcpTransport.handleException(channel, exception, lifecycle,
new OutboundHandler(randomAlphaOfLength(10), Version.CURRENT, testThreadPool, BigArrays.NON_RECYCLING_INSTANCE)); new OutboundHandler(randomAlphaOfLength(10), Version.CURRENT, new String[0], testThreadPool,
BigArrays.NON_RECYCLING_INSTANCE));
if (expectClosed) { if (expectClosed) {
assertTrue(listener.isDone()); assertTrue(listener.isDone());