Clean up NetconfClientConfiguration
[netconf.git] / netconf / netconf-netty-util / src / test / java / org / opendaylight / netconf / nettyutil / handler / ssh / authentication / LoginPasswordHandlerTest.java
index d2ce899e0ac4306849c64a65bc5bea4f8da11d7e..b82434c0d88882a4e4766fb998eaca6c7416ba3d 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.netconf.nettyutil.handler.ssh.authentication;
 
 import static org.junit.Assert.assertEquals;
@@ -14,12 +13,11 @@ import static org.mockito.Mockito.doReturn;
 import static org.mockito.Mockito.mock;
 import static org.mockito.Mockito.verify;
 
-import org.apache.sshd.client.future.AuthFuture;
-import org.apache.sshd.client.session.ClientSession;
 import org.junit.Test;
+import org.opendaylight.netconf.shaded.sshd.client.future.AuthFuture;
+import org.opendaylight.netconf.shaded.sshd.client.session.ClientSession;
 
 public class LoginPasswordHandlerTest {
-
     @Test
     public void testLoginPassword() throws Exception {
         final LoginPasswordHandler loginPasswordHandler = new LoginPasswordHandler("user", "pwd");
@@ -33,4 +31,4 @@ public class LoginPasswordHandlerTest {
         verify(session).addPasswordIdentity("pwd");
         verify(session).auth();
     }
-}
\ No newline at end of file
+}