[HttpClient] fix testTimeoutIsNotAFatalError (bis)

This commit is contained in:
Nicolas Grekas 2020-05-09 19:43:44 +02:00
parent 00ae470307
commit 333f7187dc

View File

@ -97,7 +97,7 @@ abstract class HttpClientTestCase extends BaseHttpClientTestCase
{ {
$client = $this->getHttpClient(__FUNCTION__); $client = $this->getHttpClient(__FUNCTION__);
$response = $client->request('GET', 'http://localhost:8057/timeout-body', [ $response = $client->request('GET', 'http://localhost:8057/timeout-body', [
'timeout' => 0.1, 'timeout' => 0.25,
]); ]);
try { try {