Skip to content

Commit

Permalink
Fix typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Jul 28, 2020
1 parent 470d169 commit c434bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zend/tests/operator_unsupported_types.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
Expand Down

0 comments on commit c434bbb

Please sign in to comment.