Update error_reporting setting

This commit is contained in:
Uwe Tews
2017-10-09 10:21:16 +02:00
parent 462efddfdf
commit 3c7f0826d3

View File

@@ -88,7 +88,7 @@ class PHPUnit_Smarty extends PHPUnit_Framework_TestCase
*/ */
public static function setUpBeforeClass() public static function setUpBeforeClass()
{ {
error_reporting(E_ALL | E_STRICT); error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
self::$init = true; self::$init = true;
self::$pluginsdir =self::getSmartyPluginsDir(); self::$pluginsdir =self::getSmartyPluginsDir();
} }