From e0b15a127f59d6418f095e42631978b910246821 Mon Sep 17 00:00:00 2001 From: Wim Wisselink Date: Wed, 9 Oct 2024 11:15:48 +0200 Subject: [PATCH] Removing deprecated E_STRICT constant from test suite. --- tests/PHPUnit_Smarty.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PHPUnit_Smarty.php b/tests/PHPUnit_Smarty.php index 18b4112fb..029c8f901 100644 --- a/tests/PHPUnit_Smarty.php +++ b/tests/PHPUnit_Smarty.php @@ -64,7 +64,7 @@ class PHPUnit_Smarty extends PHPUnit\Framework\TestCase */ public static function setUpBeforeClass(): void { - error_reporting(E_ALL & ~E_STRICT & ~E_DEPRECATED & ~E_USER_DEPRECATED); + error_reporting(E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED); self::$init = true; self::$pluginsdir =self::getSmartyPluginsDir(); }