Skip to content

Commit

Permalink
Assertion fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyshockov committed Oct 14, 2019
1 parent bd5a98a commit fe66dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Handler/CurlMultiHandlerTest.php
Expand Up @@ -32,7 +32,7 @@ public function testCanAddCustomCurlOptions()
]]);
$request = new Request('GET', Server::$url);
$a($request, []);
$this->assertEquals(1, $_SERVER['_curl_multi'][CURLMOPT_PIPELINING]);
$this->assertEquals(2, $_SERVER['_curl_multi'][CURLMOPT_PIPELINING]);
$this->assertEquals(5, $_SERVER['_curl_multi'][CURLMOPT_MAXCONNECTS]);
}

Expand Down

0 comments on commit fe66dcf

Please sign in to comment.