Skip to content

Commit

Permalink
formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
adnanalicic committed Feb 15, 2023
1 parent f117849 commit 01504ff
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void afterTests() {

@Test
public void
createNewAdminAgency_Should_returnExpectedCreatedAdmin_When_inputDataIsCorrectAndMultitenancyDisabled() {
createNewAdminAgency_Should_returnExpectedCreatedAdmin_When_inputDataIsCorrectAndMultitenancyDisabled() {
// given
ReflectionTestUtils.setField(createAdminService, "multiTenancyEnabled", false);
when(identityClient.createKeycloakUser(any(), anyString(), any()))
Expand Down Expand Up @@ -98,7 +98,7 @@ public void afterTests() {

@Test
public void
createNewAdminAgency_Should_returnExpectedCreatedAdmin_When_inputDataIsCorrectAndMultitenancyEnabled() {
createNewAdminAgency_Should_returnExpectedCreatedAdmin_When_inputDataIsCorrectAndMultitenancyEnabled() {
// given
ReflectionTestUtils.setField(createAdminService, "multiTenancyEnabled", true);
TenantContext.setCurrentTenant(1L);
Expand Down Expand Up @@ -153,7 +153,7 @@ public void getUserRolesForTenantAdmin_ShouldGetProperDefaultRoles_ForMultidomai

@Test(expected = CustomValidationHttpStatusException.class)
public void
createNewAdminAgency_Should_throwCustomValidationHttpStatusException_When_keycloakIdIsMissing() {
createNewAdminAgency_Should_throwCustomValidationHttpStatusException_When_keycloakIdIsMissing() {
// given
KeycloakCreateUserResponseDTO keycloakResponse =
easyRandom.nextObject(KeycloakCreateUserResponseDTO.class);
Expand Down

0 comments on commit 01504ff

Please sign in to comment.