summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/property006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/traits/property006.phpt')
-rw-r--r--Zend/tests/traits/property006.phpt5
1 files changed, 2 insertions, 3 deletions
diff --git a/Zend/tests/traits/property006.phpt b/Zend/tests/traits/property006.phpt
index 0dd80d8ba2..bbb364e8fc 100644
--- a/Zend/tests/traits/property006.phpt
+++ b/Zend/tests/traits/property006.phpt
@@ -1,8 +1,7 @@
--TEST--
-Introducing new private variables of the same name in a subclass is ok, and does not lead to any output. That is consitent with normal inheritance handling.
+Introducing new private variables of the same name in a subclass is ok, and does not lead to any output. That is consistent with normal inheritance handling.
--FILE--
<?php
-error_reporting(E_ALL | E_STRICT);
class Base {
private $hello;
@@ -29,7 +28,7 @@ class Notice extends Base {
}
echo "POST-CLASS-GUARD2\n";
?>
---EXPECTF--
+--EXPECT--
PRE-CLASS-GUARD
POST-CLASS-GUARD
POST-CLASS-GUARD2