Skip to content
Snippets Groups Projects
Commit d57bc19b authored by Julian Maurice's avatar Julian Maurice
Browse files

Use HTTPS for HTML5 validator in tests

Using HTTP only redirects to the HTTPS version
parent 18d97860
Branches
Tags
4 merge requests!545Master,!544Master,!543Master,!542Master
......@@ -220,7 +220,7 @@ abstract class AbstractControllerTestCase extends Zend_Test_PHPUnit_ControllerTe
$content = $this->_response->getBody();
$httpClient = new Zend_Http_Client();
$httpClient->setUri('http://html5.validator.nu/');
$httpClient->setUri('https://html5.validator.nu/');
$httpClient->setMethod(Zend_Http_Client::POST);
$httpClient->setEncType(Zend_Http_Client::ENC_FORMDATA);
$httpClient->setParameterPost('out', 'text');
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment