Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 3c1bd87

Browse files
author
Vito Famiglietti
committed
chore: style
1 parent 8301ea9 commit 3c1bd87

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/HttpClientTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ protected function setUp(): void
2727
* Get package providers.
2828
*
2929
* @param \Illuminate\Foundation\Application $app
30-
*
3130
* @return array
3231
*/
3332
protected function getPackageProviders($app)
@@ -209,7 +208,7 @@ public function test_that_we_can_still_use_the_client_without_default_options_se
209208
'*' => Http::response(),
210209
]);
211210

212-
$response = Http::get('htpps://foo.com');
211+
$response = Http::get('htpps://foo.com');
213212

214213
$this->assertEquals(200, $response->status());
215214
}
@@ -224,7 +223,7 @@ public function test_that_we_can_still_define_macros_without_default_options_set
224223
return $this->withHeaders(['X-Custom-Header' => 'custom-value']);
225224
});
226225

227-
$response = Http::addXCustomHeader()->get('https://foo.com');
226+
$response = Http::addXCustomHeader()->get('https://foo.com');
228227

229228
Http::assertSent(function ($request) {
230229
return $request->hasHeader('X-Custom-Header', 'custom-value');

0 commit comments

Comments
 (0)