summaryrefslogtreecommitdiff
path: root/Zend/tests/bug27669.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug27669.phpt')
-rw-r--r--Zend/tests/bug27669.phpt3
1 files changed, 1 insertions, 2 deletions
diff --git a/Zend/tests/bug27669.phpt b/Zend/tests/bug27669.phpt
index 43591a9386..97b15590e2 100644
--- a/Zend/tests/bug27669.phpt
+++ b/Zend/tests/bug27669.phpt
@@ -2,8 +2,6 @@
Bug #27669 (PHP 5 didn't support all possibilities for calling static methods dynamically)
--FILE--
<?php
- error_reporting(E_ALL & !E_STRICT);
-
class A {
function hello() {
echo "Hello World\n";
@@ -14,5 +12,6 @@ Bug #27669 (PHP 5 didn't support all possibilities for calling static methods dy
?>
===DONE===
--EXPECTF--
+Deprecated: Non-static method A::hello() should not be called statically in %s on line %d
Hello World
===DONE===