Skip to content

Commit

Permalink
:octocat:
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed Mar 11, 2024
1 parent a6794a3 commit f34d84d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
</coverage>
<groups>
<exclude>
<!--
<group>output</group>
<!--<group>slow</group>-->
<group>slow</group>
-->
</exclude>
</groups>
<php>
Expand Down
3 changes: 2 additions & 1 deletion tests/URLExtractorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class URLExtractorTest extends HTTPClientTestAbstract{

protected function initClient():ClientInterface{

$this->options->curl_options = [
$this->options->ssl_verifypeer = false;
$this->options->curl_options = [
CURLOPT_FOLLOWLOCATION => false,
CURLOPT_MAXREDIRS => 25,
];
Expand Down

0 comments on commit f34d84d

Please sign in to comment.