From: Ilia Alshanetsky Date: Thu, 14 Feb 2008 16:30:10 +0000 (+0000) Subject: MFB: Fixed test on 64bit machines X-Git-Tag: RELEASE_2_0_0a1~472 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2e7675cb46b770d146dd581659dac72dba59327;p=php MFB: Fixed test on 64bit machines --- diff --git a/ext/standard/tests/array/array_push_error2.phpt b/ext/standard/tests/array/array_push_error2.phpt index bf85f92f1f..acc91b0b6e 100644 --- a/ext/standard/tests/array/array_push_error2.phpt +++ b/ext/standard/tests/array/array_push_error2.phpt @@ -28,22 +28,22 @@ echo "Done"; *** Testing array_push() : error conditions *** int(3) array(3) { - [-2147483647]=> + [-%d]=> string(3) "min" - [2147483647]=> + [%d]=> string(3) "max" - [-2147483648]=> + [-%d]=> string(3) "new" } Warning: array_push(): Cannot add element to the array as the next element is already occupied in %s on line %d bool(false) array(3) { - [-2147483647]=> + [-%d]=> string(3) "min" - [2147483647]=> + [%d]=> string(3) "max" - [-2147483648]=> + [-%d]=> string(3) "new" } Done