BaseTestCase: Drop timezone setup, the app will do it

This commit is contained in:
Johannes Meyer 2023-07-04 16:39:38 +02:00
parent 531479a92e
commit 08bfc4f596
1 changed files with 0 additions and 10 deletions

View File

@ -92,14 +92,6 @@ namespace Icinga\Test {
),
);
/**
* Setup the default timezone
*/
public static function setupTimezone()
{
date_default_timezone_set('UTC');
}
/**
* Setup MVC bootstrapping and ensure that the Icinga-Mock gets reinitialized
*/
@ -319,6 +311,4 @@ namespace Icinga\Test {
}
}
}
BaseTestCase::setupTimezone();
}