Skip to content
Snippets Groups Projects
Unverified Commit 4dd98ceb authored by totten's avatar totten Committed by GitHub
Browse files

Merge pull request #20810 from totten/master-e2e-timeout

AssetBuilderTest - Raise threshold for timeout
parents e93a8142 a19ebbff
Branches
Tags
No related merge requests found
......@@ -164,7 +164,7 @@ class AssetBuilderTest extends \CiviEndToEndTestCase {
$url = \Civi::service('asset_builder')->getUrl('invalid.json');
try {
$guzzleClient = new \GuzzleHttp\Client();
$guzzleResponse = $guzzleClient->request('GET', $url, array('timeout' => 1));
$guzzleResponse = $guzzleClient->request('GET', $url, array('timeout' => 2));
$this->fail('Expecting ClientException... but it was not thrown!');
}
catch (\GuzzleHttp\Exception\ClientException $e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment