mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-21366 testConverter: allow some double-precision error for 0.0
See #1443
This commit is contained in:
parent
50f3d01553
commit
7c9bad02d2
1 changed files with 5 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue