summaryrefslogtreecommitdiff
path: root/Zend/tests/attributes/013_class_scope.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/attributes/013_class_scope.phpt')
-rw-r--r--Zend/tests/attributes/013_class_scope.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/attributes/013_class_scope.phpt b/Zend/tests/attributes/013_class_scope.phpt
index 3bb2b303ba..94764c2d69 100644
--- a/Zend/tests/attributes/013_class_scope.phpt
+++ b/Zend/tests/attributes/013_class_scope.phpt
@@ -34,7 +34,7 @@ trait T1
class C2
{
use T1;
-
+
private const FOO = 'bar';
}
@@ -109,7 +109,7 @@ Array
[1] => bar
)
string(7) "ERROR 1"
-string(36) "Undefined class constant 'self::FOO'"
+string(28) "Undefined constant self::FOO"
bool(true)
string(3) "bar"