Skip to content

Commit bb5dbed

Browse files
committed
removed usages of IsEqualToIgnoringWhitespace
1 parent e37e7c2 commit bb5dbed

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/ObservationToNarrativeStatementMapperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ void When_MappingObservationJsonWithNestedTrue_Expect_NarrativeStatementXmlOutpu
119119

120120
String outputMessage = observationToNarrativeStatementMapper.mapObservationToNarrativeStatement(parsedObservation, true);
121121

122-
assertThat(outputMessage).isEqualToIgnoringWhitespace(expectedOutputMessage);
122+
assertThat(outputMessage).isEqualTo(expectedOutputMessage);
123123
}
124124

125125
@Test

0 commit comments

Comments
 (0)