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.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug73337.phpt b/Zend/tests/bug73337.phpt
index 9eff18e643..53ce963c52 100644
--- a/Zend/tests/bug73337.phpt
+++ b/Zend/tests/bug73337.phpt
@@ -6,7 +6,7 @@ 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 int in %sbug73337.php on line 3
+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 int in %sbug73337.php on line 3
+Notice: Object of class d could not be converted to number in %sbug73337.php on line 3
Exception properly caught