From 858164624da360dd34a49216555c56417465b8d6 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Sun, 31 Jul 2011 16:15:40 +0000 Subject: [PATCH] Fixed test which was assuming that E_STRICT is not on by default. --- Zend/tests/traits/property001.phpt | 1 + 1 file changed, 1 insertion(+) diff --git a/Zend/tests/traits/property001.phpt b/Zend/tests/traits/property001.phpt index 7efd02ecc7..d5e4ddc617 100644 --- a/Zend/tests/traits/property001.phpt +++ b/Zend/tests/traits/property001.phpt @@ -13,6 +13,7 @@ trait THello2 { } echo "PRE-CLASS-GUARD-TraitsTest\n"; +error_reporting(E_ALL & ~E_STRICT); // ensuring that it is only for E_STRICT class TraitsTest { use THello1; -- 2.40.0