summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-08-16 21:49:20 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-09-09 10:47:43 +0200
commit9975986b7ef849c3a8e73a48748befbfdc50e416 (patch)
treeb287480ec6e0d4853fa4e1f53d3627836b74d695 /tests
parentc5b42be40e98f1626e2404af069af16cb6510ef3 (diff)
downloadphp-git-9975986b7ef849c3a8e73a48748befbfdc50e416.tar.gz
Improve error messages mentioning parameters instead of arguments
Closes GH-5999
Diffstat (limited to 'tests')
-rw-r--r--tests/classes/constants_error_003.phpt2
-rw-r--r--tests/lang/passByReference_002.phpt2
-rw-r--r--tests/lang/passByReference_010.phpt6
-rw-r--r--tests/output/ob_014.phpt2
-rw-r--r--tests/output/ob_015.phpt2
5 files changed, 7 insertions, 7 deletions
diff --git a/tests/classes/constants_error_003.phpt b/tests/classes/constants_error_003.phpt
index a0ee23506b..afc199555b 100644
--- a/tests/classes/constants_error_003.phpt
+++ b/tests/classes/constants_error_003.phpt
@@ -16,7 +16,7 @@ Basic class support - attempting to pass a class constant by reference.
var_dump(aclass::myConst);
?>
--EXPECTF--
-Fatal error: Uncaught Error: Cannot pass parameter 1 by reference in %s:%d
+Fatal error: Uncaught Error: f(): Argument #1 ($a) cannot be passed by reference in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
diff --git a/tests/lang/passByReference_002.phpt b/tests/lang/passByReference_002.phpt
index 2c3de8879a..fbb6bd2a6c 100644
--- a/tests/lang/passByReference_002.phpt
+++ b/tests/lang/passByReference_002.phpt
@@ -12,7 +12,7 @@ f(2);
?>
--EXPECTF--
-Fatal error: Uncaught Error: Cannot pass parameter 1 by reference in %s:%d
+Fatal error: Uncaught Error: f(): Argument #1 ($arg1) cannot be passed by reference in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
diff --git a/tests/lang/passByReference_010.phpt b/tests/lang/passByReference_010.phpt
index 24b108a174..d6709ff84e 100644
--- a/tests/lang/passByReference_010.phpt
+++ b/tests/lang/passByReference_010.phpt
@@ -50,11 +50,11 @@ try {
?>
--EXPECT--
---> Pass constant assignment by reference:
-Exception: Cannot pass parameter 1 by reference
+Exception: f(): Argument #1 ($a) cannot be passed by reference
---> Pass variable assignment by reference:
-Exception: Cannot pass parameter 1 by reference
+Exception: f(): Argument #1 ($a) cannot be passed by reference
---> Pass reference assignment by reference:
@@ -63,4 +63,4 @@ string(9) "a.changed"
---> Pass concat assignment by reference:
-Exception: Cannot pass parameter 1 by reference
+Exception: f(): Argument #1 ($a) cannot be passed by reference
diff --git a/tests/output/ob_014.phpt b/tests/output/ob_014.phpt
index bc46f2ae58..0893db5d25 100644
--- a/tests/output/ob_014.phpt
+++ b/tests/output/ob_014.phpt
@@ -12,4 +12,4 @@ try {
?>
--EXPECT--
foo
-str_rot13() expects exactly 1 parameter, 2 given
+str_rot13() expects exactly 1 argument, 2 given
diff --git a/tests/output/ob_015.phpt b/tests/output/ob_015.phpt
index 2bc08687d7..47c9b24be1 100644
--- a/tests/output/ob_015.phpt
+++ b/tests/output/ob_015.phpt
@@ -12,4 +12,4 @@ ob_end_flush();
?>
--EXPECT--
foo
-str_rot13() expects exactly 1 parameter, 2 given
+str_rot13() expects exactly 1 argument, 2 given