summaryrefslogtreecommitdiff
path: root/Zend/tests/bug73337.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug73337.phpt')
-rw-r--r--Zend/tests/bug73337.phpt5
1 files changed, 1 insertions, 4 deletions
diff --git a/Zend/tests/bug73337.phpt b/Zend/tests/bug73337.phpt
index 53ce963c52..a338aa605c 100644
--- a/Zend/tests/bug73337.phpt
+++ b/Zend/tests/bug73337.phpt
@@ -5,8 +5,5 @@ Bug #73337 (try/catch not working with two exceptions inside a same operation)
class d { function __destruct() { throw new Exception; } }
try { new d + new d; } catch (Exception $e) { print "Exception properly caught\n"; }
?>
---EXPECTF--
-Notice: Object of class d could not be converted to number in %sbug73337.php on line 3
-
-Notice: Object of class d could not be converted to number in %sbug73337.php on line 3
+--EXPECT--
Exception properly caught