Skip to content

Commit e878ff9

Browse files
Merge pull request nextcloud#54617 from nextcloud/followup/54608/double-space
test: Fix double space
2 parents bc1f918 + 51f596e commit e878ff9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/lib/Security/CertificateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testGetOrganization(): void {
7171
public function testGetIssueDate(): void {
7272
$expected = new \DateTime('2025-08-25 09:53:14 GMT');
7373
$this->assertEquals($expected->getTimestamp(), $this->goodCertificate->getIssueDate()->getTimestamp());
74-
$expected = new \DateTime('2025-08-25 10:00:15 GMT');
74+
$expected = new \DateTime('2025-08-25 10:00:15 GMT');
7575
$this->assertEquals($expected->getTimestamp(), $this->invalidCertificate->getIssueDate()->getTimestamp());
7676
}
7777

0 commit comments

Comments
 (0)