Skip to content

Commit

Permalink
Ensure Tests_Transport_*::setUp() is public
Browse files Browse the repository at this point in the history
Should fix the tests broken on merge.
  • Loading branch information
rmccue committed Oct 6, 2013
1 parent 450f400 commit 4e2ceb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Transport/fsockopen.php
Expand Up @@ -4,7 +4,7 @@ class RequestsTest_Transport_fsockopen extends RequestsTest_Transport_Base {
protected $transport = 'Requests_Transport_fsockopen';

protected $skip_https = false;
protected function setUp() {
public function setUp() {
// If OpenSSL isn't loaded, this should fail
if (!defined('OPENSSL_VERSION_NUMBER')) {
$this->skip_https = true;
Expand Down

0 comments on commit 4e2ceb6

Please sign in to comment.