diff options
Diffstat (limited to 'ufund-api/src/test/java')
| -rw-r--r-- | ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java index b6367ad..cc7df40 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/UserControllerTest.java @@ -1,7 +1,6 @@  package com.ufund.api.ufundapi.controller;  import java.io.IOException; -import java.security.InvalidParameterException;  import java.util.Map;  import static java.util.Map.entry; @@ -239,6 +238,7 @@ public class UserControllerTest {          // When updateUser is called on the Mock User service, throw a Invalid Parameter exception          // exception          doThrow(new IllegalAccessException()).when(mockAuthService).authenticate(username, key); +                  // Invoke          ResponseEntity<User> response = userController.updateUser(user, username, key);  | 
