We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56a2585 commit a7f1de8Copy full SHA for a7f1de8
tests/HttpClientTest.php
@@ -30,7 +30,7 @@ public function testLargeGet(): void
30
$response = $this->client->sendRequest($request);
31
32
$this->assertEquals("GET", $this->curlHandle->getOption(CURLOPT_CUSTOMREQUEST));
33
- $this->assertEquals("", $this->curlHandle->getOption(CURLOPT_REQUEST_TARGET));
+ $this->assertEquals("/", $this->curlHandle->getOption(CURLOPT_REQUEST_TARGET));
34
$this->assertEquals(200, $response->getStatusCode());
35
$this->assertEquals("TEST", $response->getReasonPhrase());
36
$this->assertEquals("1.1", $response->getProtocolVersion());
0 commit comments