Update SSLTest.php

fixed curly braces in this file as @aaronhuisinga reported
This commit is contained in:
Pezhvak
2019-12-20 17:12:58 +03:30
committed by GitHub
parent 1be0e794d9
commit adfb6d28d2

View File

@@ -38,7 +38,7 @@ class SSLTest extends TestCase
$result = $sslMock->getSSLVerificationStatus('c2547eb745079dac9320b638f5e225cf483cc5cfdda41'); $result = $sslMock->getSSLVerificationStatus('c2547eb745079dac9320b638f5e225cf483cc5cfdda41');
$this->assertObjectHasAttribute('result', $result); $this->assertObjectHasAttribute('result', $result);
$this->assertEquals('active', $result->result{0}->certificate_status); $this->assertEquals('active', $result->result[0]->certificate_status);
} }
public function testGetHTTPSRedirectSetting() public function testGetHTTPSRedirectSetting()