tests(unit): fix passing deprecated value to new \DateTime();

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2023-12-15 13:15:45 +01:00
Родитель d2ab45e237
Коммит 7c261c928e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7424F1874854DF23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -126,7 +126,7 @@ class StorageTest extends TestCase {
* @dataProvider pathProvider
*/
public function testStatExisting($path, $returnSize) {
$mtime = new \DateTime(null, new \DateTimeZone('Z'));
$mtime = new \DateTime('now', new \DateTimeZone('Z'));
$mtime->sub(new \DateInterval('P2D'));
// a SP time string looks like: 2017-03-22T16:17:23Z
$returnMTime = $mtime->format('o-m-d\TH:i:se');
@ -172,7 +172,7 @@ class StorageTest extends TestCase {
public function testStatDocumentLibrary() {
$path = '';
$mtime = new \DateTime(null, new \DateTimeZone('Z'));
$mtime = new \DateTime('now', new \DateTimeZone('Z'));
$mtime->sub(new \DateInterval('P2D'));
// a SP time string looks like: 2017-03-22T16:17:23Z
$returnMTime = $mtime->format('o-m-d\TH:i:se');