summaryrefslogtreecommitdiff
path: root/Zend/tests/exception_015.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/exception_015.phpt')
-rw-r--r--Zend/tests/exception_015.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/exception_015.phpt b/Zend/tests/exception_015.phpt
index a1b9ae48e2..e35a1eefe2 100644
--- a/Zend/tests/exception_015.phpt
+++ b/Zend/tests/exception_015.phpt
@@ -5,7 +5,7 @@ Exceptions on improper access to string
$s = "ABC";
try {
$s[] = "D";
-} catch (EngineException $e) {
+} catch (Error $e) {
echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "\n";
}
@@ -14,7 +14,7 @@ $s[] = "D";
--EXPECTF--
Exception: [] operator not supported for strings in %sexception_015.php on line %d
-Fatal error: Uncaught EngineException: [] operator not supported for strings in %sexception_015.php:%d
+Fatal error: Uncaught Error: [] operator not supported for strings in %sexception_015.php:%d
Stack trace:
#0 {main}
thrown in %sexception_015.php on line %d