From 6f41d5021a88ded0c0ef1ee1e3373fabfb14cfa2 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 23 Jul 2002 21:20:08 +0000 Subject: [PATCH] ICU-1970 Fix for z/OS optimization X-SVN-Rev: 9293 --- icu4c/source/test/cintltst/cucdtst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/test/cintltst/cucdtst.c b/icu4c/source/test/cintltst/cucdtst.c index bf6034e140d..e5ace45ad04 100644 --- a/icu4c/source/test/cintltst/cucdtst.c +++ b/icu4c/source/test/cintltst/cucdtst.c @@ -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); } }