Skip to content

Commit

Permalink
🔧 how did this go undetected before??
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed Mar 6, 2024
1 parent 371b388 commit 2e4ee90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Common/CurlMultiClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected function setUp():void{

$options = new HTTPOptions([
'ca_info' => __DIR__.'/../cacert.pem',
'sleep' => (60 / 300 * 1000000),
'sleep' => 1,
]);

$this->multiResponseHandler = $this->getTestResponseHandler();
Expand Down
2 changes: 1 addition & 1 deletion tests/HTTPOptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function testInvalidUserAgentException():void{
$this->expectException(ClientExceptionInterface::class);
$this->expectExceptionMessage('invalid user agent');

new HTTPOptions(['user_agent' => false]);
new HTTPOptions(['user_agent' => '']);
}

public function testInvalidCAException():void{
Expand Down

0 comments on commit 2e4ee90

Please sign in to comment.