Fix NetconfCommand test case error
[netconf.git] / netconf / netconf-console / src / test / java / org / opendaylight / netconf / console / commands / NetconfCommandsImplCallsTest.java
index c037c33fe5c8d94ce54f02ec060af9abe39b20e1..afedf3d5fc5142028b2b6ea68371e618263e022b 100644 (file)
@@ -59,7 +59,7 @@ public class NetconfCommandsImplCallsTest {
                 new NetconfDisconnectDeviceCommand(netconfCommands);
         netconfDisconnectDeviceCommand.doExecute();
 
-        verify(netconfCommands, times(0)).connectDevice(any(), any());
+        verify(netconfCommands, times(0)).disconnectDevice(any(), any());
 
         netconfDisconnectDeviceCommand = new NetconfDisconnectDeviceCommand(netconfCommands, "deviceId", null, null);