diff options
Diffstat (limited to 'ext/standard/tests/strings/vsprintf_error.phpt')
| -rw-r--r-- | ext/standard/tests/strings/vsprintf_error.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/strings/vsprintf_error.phpt b/ext/standard/tests/strings/vsprintf_error.phpt index 8d581474b4..2876eb1334 100644 --- a/ext/standard/tests/strings/vsprintf_error.phpt +++ b/ext/standard/tests/strings/vsprintf_error.phpt @@ -1,9 +1,9 @@ --TEST-- -Test vsprintf() function : error conditions +Test vsprintf() function : error conditions --FILE-- <?php /* Prototype : string vsprintf(string $format , array $args) - * Description: Return a formatted string + * Description: Return a formatted string * Source code: ext/standard/formatted_print.c */ @@ -19,7 +19,7 @@ echo "\n-- Testing vsprintf() function with Zero arguments --\n"; var_dump( vsprintf() ); echo "\n-- Testing vsprintf() function with less than expected no. of arguments --\n"; -var_dump( vsprintf($format) ); +var_dump( vsprintf($format) ); echo "\n-- testing vsprintf() function with more than expected no. of arguments --\n"; var_dump( vsprintf($format, $args, $extra_arg) ); |
