Add test for expired certificate

Will only work after tomorrow
remotes/origin/fix-10825
Lukas Reschke 10 years ago committed by Robin Appelman
parent 4efe6f6240
commit 4bc9980f4b
  1. 4
      tests/lib/security/certificate.php

@ -71,9 +71,7 @@ class CertificateTest extends \PHPUnit_Framework_TestCase {
function testIsExpired() {
$this->assertSame(false, $this->goodCertificate->isExpired());
$this->assertSame(false, $this->invalidCertificate->isExpired());
// TODO: Change to false after tomorrow
$this->assertSame(false, $this->expiredCertificate->isExpired());
$this->assertSame(true, $this->expiredCertificate->isExpired());
}
function testGetIssuerName() {

Loading…
Cancel
Save