diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-07-28 15:39:22 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-07-28 15:39:22 +0200 |
commit | c434bbb344abc138135e0f856e6c01c093d33014 (patch) | |
tree | 1a0f355513964fda65b7f126f8cbaa9d4b432675 | |
parent | 470d1696d9a4057ab72b90941556f78990f61692 (diff) | |
download | php-git-c434bbb344abc138135e0f856e6c01c093d33014.tar.gz |
Fix typo in test
-rw-r--r-- | Zend/tests/operator_unsupported_types.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/operator_unsupported_types.phpt b/Zend/tests/operator_unsupported_types.phpt index e266affcea..4b27f722d7 100644 --- a/Zend/tests/operator_unsupported_types.phpt +++ b/Zend/tests/operator_unsupported_types.phpt @@ -98,7 +98,7 @@ echo "\n\nUNARY OP:\n"; foreach ($illegalValues as $illegalValue) { try { eval("return ~$illegalValue;"); - echo "No error for ~$copy\n"; + echo "No error for ~$illegalValue\n"; } catch (TypeError $e) { echo $e->getMessage() . "\n"; } |