X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-client%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fclient%2FNetconfClientSessionNegotiatorTest.java;h=5714eb4b6cdcaafd16ff8015435956253c790636;hb=7bf7d3fd39c6966a2414d4ca6fd77d195021c1f8;hp=29a687981725540a64bfeb70afd48c3c9cad653d;hpb=7884e5218cd2b7c9526d3c77afbb6ffca111d81f;p=netconf.git diff --git a/netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorTest.java b/netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorTest.java index 29a6879817..5714eb4b6c 100644 --- a/netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorTest.java +++ b/netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorTest.java @@ -54,7 +54,6 @@ import org.opendaylight.netconf.util.test.XmlFileLoader; import org.w3c.dom.Document; public class NetconfClientSessionNegotiatorTest { - private NetconfHelloMessage helloMessage; private ChannelPipeline pipeline; private ChannelPromise future; @@ -136,7 +135,7 @@ public class NetconfClientSessionNegotiatorTest { NetconfClientSessionListener sessionListener = mock(NetconfClientSessionListener.class); Timer timer = new HashedWheelTimer(); return new NetconfClientSessionNegotiator(helloMessage, startExi, promise, channel, timer, sessionListener, - timeout); + timeout, 16384); } private static NetconfHelloMessage createHelloMsg(final String name) throws Exception { @@ -180,7 +179,6 @@ public class NetconfClientSessionNegotiatorTest { verify(promise).setSuccess(any()); } - @Test public void testNetconfClientSessionNegotiatorWithEXI() throws Exception { Promise promise = mock(Promise.class);