Fixed health check issue
[portal.git] / portal-BE / src / test / java / org / onap / portal / controller / UserControllerTest.java
index 0316683..8e5b1aa 100644 (file)
@@ -47,7 +47,7 @@ import org.onap.portal.domain.db.fn.FnUser;
 import org.onap.portal.domain.dto.PortalRestResponse;
 import org.onap.portal.domain.dto.PortalRestStatusEnum;
 import org.onap.portal.domain.dto.transport.ProfileDetail;
-import org.onap.portal.service.fn.FnUserService;
+import org.onap.portal.service.user.FnUserService;
 import org.onap.portalsdk.core.onboarding.exception.CipherUtilException;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
@@ -67,7 +67,7 @@ class UserControllerTest {
        private final UserController userController;
 
        @Autowired
-       UserControllerTest(final FnUserService userService, final UserController userController) {
+       UserControllerTest(FnUserService userService, UserController userController) {
               this.userService = userService;
               this.userController = userController;
        }
@@ -140,4 +140,4 @@ class UserControllerTest {
               assertEquals(expected, actual);
               assertNotEquals(oldPassword, newPassword);
        }
-}
\ No newline at end of file
+}