We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f134e6 commit a652b46Copy full SHA for a652b46
common/src/test/java/io/github/jy95/fds/translators/AbstractOffsetWhenTest.java
@@ -51,7 +51,7 @@ private String getExpectedText1(Locale locale) {
51
void testWithWhenAndCount(Locale locale) throws ExecutionException, InterruptedException {
52
var dosage = generateWithWhenAndCount();
53
var dosageUtils = getDosageAPI(locale, DisplayOrder.OFFSET_WHEN);
54
- String result = dosageUtils.asHumanReadableText(dosage).get();
+ String result = dosageUtils.asHumanReadableText(dosage).get().replace("\u00a0"," ");;
55
String expectedResult = getExpectedText2(locale);
56
assertEquals(expectedResult, result);
57
}
0 commit comments