ICU-22534 Integrate CLDR 45 release alpha 3, part 3, source files

This commit is contained in:
DraganBesevic 2024-03-13 15:20:22 -07:00 committed by DraganBesevic
parent fc18bcb05f
commit 1b2d28b042

View file

@ -524,7 +524,10 @@ void unitsTestDataLineFn(void *context, char *fields[][2], int32_t fieldCount, U
double inverted = converter.convertInverse(got);
msg.clear();
msg.append("Converting back to ", status).append(x, status).append(" from ", status).append(y, status);
unitsTest->assertEqualsNear(msg.data(), 1000, inverted, 0.0001);
if (strncmp(x.data(), "beaufort", 8)
&& log_knownIssue("CLDR-17454", "unitTest.txt for beaufort doesn't scale correctly") ) {
unitsTest->assertEqualsNear(msg.data(), 1000, inverted, 0.0001);
}
}
/**