Skip to content

Commit

Permalink
fix broken unit test from a3df7d9
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Jun 28, 2024
1 parent d58aae8 commit 8c81285
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void testDeleteAuthorities(@ConvertWith(StringArrayConverter.class) Strin
Mockito.when(databaseAuthorities.keySet()).thenReturn(databaseAuthorityIds);

deletedAuthorityIds.forEach((id, authority) ->
Mockito.when(keycloakAuthorities.get(id)).thenReturn(authority));
Mockito.when(databaseAuthorities.get(id)).thenReturn(authority));

remoteUserPuller.syncDeletedAuthorities(keycloakAuthorities, databaseAuthorities);

Expand Down

0 comments on commit 8c81285

Please sign in to comment.