-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into PEPPER-947
- Loading branch information
Showing
3 changed files
with
53 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -499,6 +499,7 @@ public void testAddAndRemoveUser() { | |
int operatorId = setupAdmin("[email protected]", new ArrayList<>(rolesToId.values()), groupId); | ||
|
||
String user = "[email protected]"; | ||
String userVariation = "[email protected]"; | ||
String userName = "test_user6"; | ||
|
||
UserAdminService service = new UserAdminService(Integer.toString(operatorId), TEST_GROUP); | ||
|
@@ -545,7 +546,7 @@ public void testAddAndRemoveUser() { | |
// update user | ||
String newUserName = "newName"; | ||
String phone = "555-1212"; | ||
UpdateUserRequest.User updateUser = new UpdateUserRequest.User(user, newUserName, phone); | ||
UpdateUserRequest.User updateUser = new UpdateUserRequest.User(userVariation, newUserName, phone); | ||
UpdateUserRequest updateReq = new UpdateUserRequest(List.of(updateUser)); | ||
try { | ||
service.updateUser(updateReq); | ||
|