From: Stefan Marr Date: Sun, 31 Jul 2011 16:15:40 +0000 (+0000) Subject: Fixed test which was assuming that E_STRICT is not on by default. X-Git-Tag: php-5.4.0alpha3~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=858164624da360dd34a49216555c56417465b8d6;p=php Fixed test which was assuming that E_STRICT is not on by default. --- 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;