Skip to content

Commit 39e2283

Browse files
authored
fix: HTTP method name should be uppercase
1 parent 0c166d2 commit 39e2283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/HTTP/CURLRequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ public function testMultipleHTTP100(): void
11291129

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

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

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

0 commit comments

Comments
 (0)