Merge pull request #54617 from nextcloud/followup/54608/double-space

test: Fix double space
This commit is contained in:
Andy Scherzinger 2025-08-25 21:08:40 +02:00 committed by GitHub
commit e878ff9119
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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());
}