Skip to content

Commit

Permalink
fix: styleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
smokills committed Oct 8, 2020
1 parent 57a600e commit 4315f32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/HttpClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function test_that_we_can_chain_additional_options_beside_default_options
$this->factory->withOptions([
'headers' => [
'X-Another-Custom-Header' => 'another-custom-value',
]
],
])->get('https://foo.com');

$this->factory->assertSent(function ($request) {
Expand All @@ -90,7 +90,7 @@ public function test_that_we_can_chain_additional_methods_beside_default_options
$this->factory->withOptions([
'headers' => [
'X-Another-Custom-Header' => 'another-custom-value'
]
],
])->withBasicAuth('username', 'password')->get('https://foo.com');

$this->factory->assertSent(function ($request) {
Expand Down Expand Up @@ -206,7 +206,7 @@ public function test_that_macros_will_still_works()
public function test_that_we_can_still_use_the_client_without_default_options_set()
{
$this->factory->fake([
'*' => $this->factory->response()
'*' => $this->factory->response(),
]);

$response = $this->factory->get('htpps://foo.com');
Expand All @@ -217,7 +217,7 @@ public function test_that_we_can_still_use_the_client_without_default_options_se
public function test_that_we_can_still_define_macros_without_default_options_set()
{
$this->factory->fake([
'*' => $this->factory->response()
'*' => $this->factory->response(),
]);

$this->factory->macro('addXCustomHeader', function () {
Expand Down

0 comments on commit 4315f32

Please sign in to comment.