Skip to content

Commit

Permalink
Correct new PatchHandlerTest assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemers committed Dec 6, 2024
1 parent e743a06 commit 5ba2c4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void applyReplaceEntireEnterpriseExtension() {
EnterpriseExtension actual = (EnterpriseExtension) updatedUser.getExtension("urn:ietf:params:scim:schemas:extension:enterprise:2.0:User");
assertThat(actual).isNotNull();
assertThat(actual.getCostCenter()).isEqualTo("New Cost Center");
assertThat(actual.getDepartment()).isEqualTo("new Department");
assertThat(actual.getDepartment()).isEqualTo("New Department");
}


Expand Down

0 comments on commit 5ba2c4e

Please sign in to comment.