Skip to content

Commit

Permalink
fix: HTTP method name should be uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis authored Feb 14, 2024
1 parent 0c166d2 commit 39e2283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/HTTP/CURLRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ public function testMultipleHTTP100(): void

$this->request->setOutput($output);

$response = $this->request->request('get', 'http://example.com');
$response = $this->request->request('GET', 'http://example.com');

$this->assertSame($jsonBody, $response->getBody());

Expand Down

0 comments on commit 39e2283

Please sign in to comment.