Skip to content

Commit

Permalink
Fixed tests for #240
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Oct 12, 2024
1 parent ce2f4a8 commit 3e03fde
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import java.util.List;
import java.util.Map;
import java.util.UUID;

import static org.junit.jupiter.api.Assertions.assertEquals;

Expand Down Expand Up @@ -112,7 +113,8 @@ private Provisioning getProvisioning(ScimUserIdentifier scimUserIdentifier) {
"scim_url", "http://localhost",
"scim_user", "user",
"scim_password", "secret",
"scim_user_identifier", scimUserIdentifier.name()
"scim_user_identifier", scimUserIdentifier.name(),
"coin:institution_guid", UUID.randomUUID().toString()
));
}
}

0 comments on commit 3e03fde

Please sign in to comment.