Skip to content

Commit a7f1de8

Browse files
committed
fix tests
1 parent 56a2585 commit a7f1de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/HttpClientTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testLargeGet(): void
3030
$response = $this->client->sendRequest($request);
3131

3232
$this->assertEquals("GET", $this->curlHandle->getOption(CURLOPT_CUSTOMREQUEST));
33-
$this->assertEquals("", $this->curlHandle->getOption(CURLOPT_REQUEST_TARGET));
33+
$this->assertEquals("/", $this->curlHandle->getOption(CURLOPT_REQUEST_TARGET));
3434
$this->assertEquals(200, $response->getStatusCode());
3535
$this->assertEquals("TEST", $response->getReasonPhrase());
3636
$this->assertEquals("1.1", $response->getProtocolVersion());

0 commit comments

Comments
 (0)