Adjust to yangtools-2.0.0/odlparent-3.0.0 changes
[netconf.git] / netconf / netconf-netty-util / src / test / java / org / opendaylight / netconf / nettyutil / AbstractNetconfSessionTest.java
index 7dda1cdac8dcf67d2a3ee269e5e283fb84d92ec9..f1dad80c6c225c659e509ce0bd3716c490ce3f15 100644 (file)
@@ -159,10 +159,10 @@ public class AbstractNetconfSessionTest {
     @Test
     public void testSendMessage() throws Exception {
         final TestingNetconfSession testingNetconfSession = new TestingNetconfSession(listener, channel, 1L);
-        final NetconfHelloMessage clientHello = NetconfHelloMessage.createClientHello(Collections.<String>emptySet(),
+        final NetconfHelloMessage hello = NetconfHelloMessage.createClientHello(Collections.<String>emptySet(),
                 Optional.<NetconfHelloMessageAdditionalHeader>absent());
-        testingNetconfSession.sendMessage(clientHello);
-        verify(channel).writeAndFlush(clientHello);
+        testingNetconfSession.sendMessage(hello);
+        verify(channel).writeAndFlush(hello);
     }
 
-}
\ No newline at end of file
+}