diff options
author | Aaron Piotrowski <aaron@trowski.com> | 2015-05-17 17:31:43 -0500 |
---|---|---|
committer | Aaron Piotrowski <aaron@trowski.com> | 2015-05-17 17:31:43 -0500 |
commit | e97d5fab35af5c73b0d9614bb2d079c67bf4d508 (patch) | |
tree | 068efc00d08018aff1c74900270465333bc2d1b1 /Zend/tests/add_003.phpt | |
parent | 7e18df82a3b109bbe83318efa170a804c8121669 (diff) | |
download | php-git-e97d5fab35af5c73b0d9614bb2d079c67bf4d508.tar.gz |
Update exception names in tests after formatting changes.
Diffstat (limited to 'Zend/tests/add_003.phpt')
-rw-r--r-- | Zend/tests/add_003.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/add_003.phpt b/Zend/tests/add_003.phpt index 7a9391038c..a3705479e2 100644 --- a/Zend/tests/add_003.phpt +++ b/Zend/tests/add_003.phpt @@ -10,7 +10,7 @@ $o->prop = "value"; try { var_dump($o + $a); -} catch (EngineException $e) { +} catch (Error $e) { echo "\nException: " . $e->getMessage() . "\n"; } @@ -26,7 +26,7 @@ Exception: Unsupported operand types Notice: Object of class stdClass could not be converted to int in %s on line %d -Fatal error: Uncaught EngineException: Unsupported operand types in %s:%d +Fatal error: Uncaught Error: Unsupported operand types in %s:%d Stack trace: #0 {main} thrown in %s on line %d |