Add test for expired certificate

Will only work after tomorrow
This commit is contained in:
Lukas Reschke 2014-08-27 16:29:42 +02:00 committed by Robin Appelman
parent 4efe6f6240
commit 4bc9980f4b
1 changed files with 1 additions and 3 deletions

View File

@ -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() {