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

index fe3361d4987e599f987bd4bff01f5d923af7932d..9e24bd66a17648601334230117419e8c6e6eac7c 100644 (file)
@@ -21,17 +21,17 @@ 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)
 
-Done
\ No newline at end of file
+Done
index d3b3cb572b2c34b5312408e6fd41f8add7fb947f..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
\ No newline at end of file
+Done