Skip to content

Commit

Permalink
Fix User-Agent in HttpClient
Browse files Browse the repository at this point in the history
  • Loading branch information
joanhey committed Jul 11, 2023
1 parent 6a0014e commit 180c3e2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Pest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ function HttpClient(): Client
{
return new Client([
'base_uri' => 'http://127.0.0.1:8080',
'headers' => [
'User-Agent' => 'Testing/1.0',
],
'cookies' => true,
"User-Agent" => "Testing/1.0",
'http_errors' => false,
]);
}

0 comments on commit 180c3e2

Please sign in to comment.