test: happy new year (#3873)

* test: happy new year

* yup
This commit is contained in:
Dag 2024-01-02 16:21:52 +01:00 committed by GitHub
parent fac1f5cd88
commit ef378663aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -41,7 +41,8 @@ class FeedItemTest extends TestCase
$this->assertSame(64800, $item->getTimestamp());
$item->setTimestamp('1st jan last year');
// This will fail at 2024-01-01 hehe
$this->assertSame(1640995200, $item->getTimestamp());
// This will fail at 2025-01-01 hehe
$this->assertSame(1672531200, $item->getTimestamp());
}
}