Skip to content

Commit

Permalink
fix: test for redirect
Browse files Browse the repository at this point in the history
For more info see guzzle/guzzle#3043
  • Loading branch information
bednar committed Jun 21, 2022
1 parent 08a7041 commit c86f479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/DefaultApiTest.php
Expand Up @@ -125,6 +125,6 @@ public function test_follow_redirect()
*/
private function getHeader(Request $request): string
{
return implode(' ', (array)$request->getHeaders()['Authorization']);
return implode(' ', $request->getHeaders()['Authorization']);
}
}

0 comments on commit c86f479

Please sign in to comment.