Skip to content

Commit f34d84d

Browse files
committed
:octocat:
1 parent a6794a3 commit f34d84d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: phpunit.xml.dist

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
</coverage>
2424
<groups>
2525
<exclude>
26+
<!--
2627
<group>output</group>
27-
<!--<group>slow</group>-->
28+
<group>slow</group>
29+
-->
2830
</exclude>
2931
</groups>
3032
<php>

Diff for: tests/URLExtractorTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class URLExtractorTest extends HTTPClientTestAbstract{
2727

2828
protected function initClient():ClientInterface{
2929

30-
$this->options->curl_options = [
30+
$this->options->ssl_verifypeer = false;
31+
$this->options->curl_options = [
3132
CURLOPT_FOLLOWLOCATION => false,
3233
CURLOPT_MAXREDIRS => 25,
3334
];

0 commit comments

Comments
 (0)