diff options
Diffstat (limited to 'Zend/tests/not_002.phpt')
-rw-r--r-- | Zend/tests/not_002.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/not_002.phpt b/Zend/tests/not_002.phpt index 11efcaa2ea..38691a1a51 100644 --- a/Zend/tests/not_002.phpt +++ b/Zend/tests/not_002.phpt @@ -7,9 +7,9 @@ $a = array(1,2,3); $b = array(1,2); try { - var_dump(~$b); + var_dump(~$b); } catch (Error $e) { - echo "\nException: " . $e->getMessage() . "\n"; + echo "\nException: " . $e->getMessage() . "\n"; } $a = ~$b; |