From: Ilia Alshanetsky Date: Sun, 29 Sep 2002 19:21:10 +0000 (+0000) Subject: Corrected ceil(-0.5) output value, it is 0 not -0. X-Git-Tag: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e7e7ae9616bfb64bfba0721e2a65de0fa7d9873;p=php Corrected ceil(-0.5) output value, it is 0 not -0. --- diff --git a/ext/standard/tests/math/floorceil.phpt b/ext/standard/tests/math/floorceil.phpt index 2098e0af7c..d42c0e86c7 100644 --- a/ext/standard/tests/math/floorceil.phpt +++ b/ext/standard/tests/math/floorceil.phpt @@ -22,7 +22,7 @@ Tests for floor en ceil ?> --EXPECT-- float(0) -float(-0) +float(0) float(-1) float(-1) float(-1)