fix tests

This commit is contained in:
Antony Dovgal 2009-01-21 12:50:10 +00:00
parent f1c66c9229
commit 30a0135d18
2 changed files with 4 additions and 0 deletions

View file

@ -669,6 +669,8 @@ Array
% %
*** Output for precision value more than maximum *** *** Output for precision value more than maximum ***
Notice: printf(): Requested precision of 988 digits was truncated to PHP maximum of %d digits in %s on line %d
12345678900.0000000000000000000000000000000000000000 12345678900.0000000000000000000000000000000000000000
*** Output for invalid width(-15) specifier *** *** Output for invalid width(-15) specifier ***

View file

@ -46,6 +46,8 @@ string(15) "%12345678900.00"
string(1) "%" string(1) "%"
-- Testing for precision value more than maximum -- -- Testing for precision value more than maximum --
Notice: sprintf(): Requested precision of 988 digits was truncated to PHP maximum of %d digits in %s on line %d
string(52) "12345678900.0000000000000000000000000000000000000000" string(52) "12345678900.0000000000000000000000000000000000000000"
-- Testing for invalid width(-15) specifier -- -- Testing for invalid width(-15) specifier --