From 1d6ef5ec3a521dcd53e0675f0d8f81eec0e1436e Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 19 May 2015 11:25:06 +0200 Subject: [PATCH] Don't setup the DateTimeFactory in our tests DateTimeFactory will be removed soon. refs #6778 --- library/Icinga/Test/BaseTestCase.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/library/Icinga/Test/BaseTestCase.php b/library/Icinga/Test/BaseTestCase.php index 542c493f1..9fdc72a57 100644 --- a/library/Icinga/Test/BaseTestCase.php +++ b/library/Icinga/Test/BaseTestCase.php @@ -25,7 +25,6 @@ namespace Icinga\Test { use Mockery; use PHPUnit_Framework_TestCase; use Icinga\Application\Icinga; - use Icinga\Util\DateTimeFactory; use Icinga\Data\ConfigObject; use Icinga\Data\ResourceFactory; use Icinga\Data\Db\DbConnection; @@ -104,12 +103,11 @@ namespace Icinga\Test { ); /** - * Setup the default timezone and pass it to DateTimeFactory::setConfig + * Setup the default timezone */ public static function setupTimezone() { date_default_timezone_set('UTC'); - DateTimeFactory::setConfig(array('timezone' => 'UTC')); } /**