ICU-1970 Fix for z/OS optimization

X-SVN-Rev: 9293
This commit is contained in:
George Rhoten 2002-07-23 21:20:08 +00:00
parent f6d1eb0103
commit 6f41d5021a

View File

@ -2678,7 +2678,7 @@ TestNumericProperties(void) {
if(type!=values[i].type) {
log_err("UCHAR_NUMERIC_TYPE(U+%04lx)=%d should be %d\n", c, type, values[i].type);
}
if(uprv_fabs(nv - values[i].numValue) >= 0.000001) {
if(0.000001 <= uprv_fabs(nv - values[i].numValue)) {
log_err("u_getNumericValue(U+%04lx)=%g should be %g\n", c, nv, values[i].numValue);
}
}