]> granicus.if.org Git - php/commitdiff
MFH
authorAntony Dovgal <tony2001@php.net>
Thu, 8 Nov 2007 08:11:55 +0000 (08:11 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 8 Nov 2007 08:11:55 +0000 (08:11 +0000)
ext/standard/tests/array/min_variation1.phpt
ext/standard/tests/array/min_variation2.phpt

index 6ae549552546601dd182166a9b58ed2d818adf5f..9e24bd66a17648601334230117419e8c6e6eac7c 100644 (file)
@@ -21,15 +21,15 @@ var_dump(min(0, 1 , 2, 3, 4, 5, 6, 7, 8, 9, 0, 10, 11, 12, 13, 14, 15, 16, 17, 1
 
 echo "\nDone\n";
 ?>
---EXPECT--
+--EXPECTF--
 
 *** Testing boundary conditions ***
 int(2147483645)
 int(2147483647)
 int(2147483646)
 int(-2147483647)
-float(-2147483648)
-float(-2147483649)
+%s(-2147483648)
+%s(-2147483649)
 
 *** Testing large number of arguments ***
 int(0)
index 0a665ed6e53e5f117cd10620fda6efa35b2c4dac..a8b215209f2edd701dcc65aee25d756eb94d602b 100644 (file)
@@ -28,7 +28,7 @@ var_dump(min(array(-2147483649, -2147483647)));
 echo "\nDone\n";
 
 ?>
---EXPECT--
+--EXPECTF--
 
 *** Testing arrays  ***
 int(1)
@@ -44,7 +44,7 @@ int(2147483645)
 int(2147483647)
 int(2147483646)
 int(-2147483647)
-float(-2147483648)
-float(-2147483649)
+%s(-2147483648)
+%s(-2147483649)
 
 Done