summaryrefslogtreecommitdiff
path: root/Zend/tests/exception_016.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/exception_016.phpt')
-rw-r--r--Zend/tests/exception_016.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/exception_016.phpt b/Zend/tests/exception_016.phpt
index 7e4c4c3e24..98831d933a 100644
--- a/Zend/tests/exception_016.phpt
+++ b/Zend/tests/exception_016.phpt
@@ -4,7 +4,7 @@ Exceptions on improper usage of $this
<?php
try {
$this->foo();
-} catch (EngineException $e) {
+} catch (Error $e) {
echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "\n";
}
@@ -13,7 +13,7 @@ $this->foo();
--EXPECTF--
Exception: Using $this when not in object context in %sexception_016.php on line %d
-Fatal error: Uncaught EngineException: Using $this when not in object context in %sexception_016.php:%d
+Fatal error: Uncaught Error: Using $this when not in object context in %sexception_016.php:%d
Stack trace:
#0 {main}
thrown in %sexception_016.php on line %d