ICU-21366 testConverter: allow some double-precision error for 0.0

See #1443
This commit is contained in:
Hugo van der Merwe 2020-11-06 17:55:21 +00:00
parent 50f3d01553
commit 7c9bad02d2

View file

@ -247,9 +247,12 @@ void UnitsTest::testConverter() {
continue;
}
double maxDelta = 1e-6 * uprv_fabs(testCase.expectedValue);
if (testCase.expectedValue == 0) {
maxDelta = 1e-12;
}
assertEqualsNear(UnicodeString("testConverter: ") + testCase.source + " to " + testCase.target,
testCase.expectedValue, converter.convert(testCase.inputValue),
0.0001 * uprv_fabs(testCase.expectedValue));
testCase.expectedValue, converter.convert(testCase.inputValue), maxDelta);
}
}