summaryrefslogtreecommitdiff
path: root/Zend/tests/bug60536_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug60536_004.phpt')
-rw-r--r--Zend/tests/bug60536_004.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug60536_004.phpt b/Zend/tests/bug60536_004.phpt
index e0c9dc0b4d..324a90e55d 100644
--- a/Zend/tests/bug60536_004.phpt
+++ b/Zend/tests/bug60536_004.phpt
@@ -5,7 +5,7 @@ Introducing new private variables of the same name in a subclass is ok, and does
error_reporting(E_ALL | E_STRICT);
class Base {
- private $hello;
+ private $hello;
}
trait THello1 {
@@ -29,7 +29,7 @@ class Notice extends Base {
}
echo "POST-CLASS-GUARD2\n";
?>
---EXPECTF--
+--EXPECTF--
PRE-CLASS-GUARD
POST-CLASS-GUARD
POST-CLASS-GUARD2