From: Robert Nicholson Date: Thu, 1 Nov 2007 08:42:32 +0000 (+0000) Subject: update min_error and max_error testcases to take into account bug fix for bug#43125 X-Git-Tag: php-5.2.5RC2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa0e4863a2dcc49f9811a2b8e53c271667bef755;p=php update min_error and max_error testcases to take into account bug fix for bug#43125 --- diff --git a/ext/standard/tests/.project b/ext/standard/tests/.project new file mode 100644 index 0000000000..a0d04f0b3e --- /dev/null +++ b/ext/standard/tests/.project @@ -0,0 +1,11 @@ + + + php5.2.ext.standard.tests + + + + + + + + diff --git a/ext/standard/tests/array/max_error.phpt b/ext/standard/tests/array/max_error.phpt index 7e8b09bfcb..cbc36f4946 100644 --- a/ext/standard/tests/array/max_error.phpt +++ b/ext/standard/tests/array/max_error.phpt @@ -20,13 +20,13 @@ var_dump(max(new stdclass)); *** Testing Error Conditions *** -Warning: max(): At%seast one %s on line %d +Warning: max(): At least one %s on line %d NULL Warning: Wrong parameter count for max() in %s on line %d NULL -Warning: max(): Array must contain at%seast one element in %s on line %d +Warning: max(): Array must contain at least one element in %s on line %d bool(false) Warning: Wrong parameter count for max() in %s on line %d diff --git a/ext/standard/tests/array/min_error.phpt b/ext/standard/tests/array/min_error.phpt index 4bd46552c9..f39516c686 100644 --- a/ext/standard/tests/array/min_error.phpt +++ b/ext/standard/tests/array/min_error.phpt @@ -20,13 +20,13 @@ var_dump(min(new stdclass)); *** Testing Error Conditions *** -Warning: min(): At%seast one %s on line %d +Warning: min(): At least one %s on line %d NULL Warning: Wrong parameter count for min() in %s on line %d NULL -Warning: min(): Array must contain at%seast one element in %s on line %d +Warning: min(): Array must contain at least one element in %s on line %d bool(false) Warning: Wrong parameter count for min() in %s on line %d