Skip to content

Commit 379f37c

Browse files
authored
test no longer ignores whitespace (#1366)
1 parent 100afbf commit 379f37c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/src/test/java/uk/nhs/adaptors/gp2gp/ehr/mapper/OrganizationToAgentMapperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ void When_MappingOrganization_Expect_AgentResourceXml() {
3333
var outputMessage = OrganizationToAgentMapper.mapOrganizationToAgent(organization, TEST_ID);
3434
assertThat(outputMessage)
3535
.describedAs(TestArgumentsLoaderUtil.FAIL_MESSAGE, INPUT_ORGANIZATION_JSON, OUTPUT_ORGANIZATION_AS_AGENT_PERSON_JSON)
36-
.isEqualToIgnoringWhitespace(expectedOutput);
36+
.isEqualTo(expectedOutput);
3737
}
3838
}

0 commit comments

Comments
 (0)