test: Fix double space

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/54617/head
Joas Schilling 2025-08-25 13:29:17 +07:00
parent 1091e59b90
commit 51f596e0c2
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
1 changed files with 1 additions and 1 deletions

@ -71,7 +71,7 @@ class CertificateTest extends \Test\TestCase {
public function testGetIssueDate(): void {
$expected = new \DateTime('2025-08-25 09:53:14 GMT');
$this->assertEquals($expected->getTimestamp(), $this->goodCertificate->getIssueDate()->getTimestamp());
$expected = new \DateTime('2025-08-25 10:00:15 GMT');
$expected = new \DateTime('2025-08-25 10:00:15 GMT');
$this->assertEquals($expected->getTimestamp(), $this->invalidCertificate->getIssueDate()->getTimestamp());
}