Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paramtamtam committed Jul 2, 2019
1 parent 1153670 commit b7f78fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpClients/GuzzleHttpClient.php
Expand Up @@ -41,7 +41,7 @@ public function request($method, $uri, array $data = [], array $headers = [])
$this->fire('before_request', $method, $uri, $body, $headers);

$response = $this->endsWith($uri, 'just/for/internal/test')
? new Response(200, ['X-Fake' => true], '["Just for a test"]')
? new Response(200, ['X-Fake' => 'true'], '["Just for a test"]')
: $this->http_client->request($method, (string) $uri, [
'query' => $query,
'body' => $body,
Expand Down

0 comments on commit b7f78fa

Please sign in to comment.