We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce2ac95 commit f92c91cCopy full SHA for f92c91c
tests/Integration/TechproductsAdapters/TechproductsCurlTest.php
@@ -9,4 +9,11 @@
9
*/
10
class TechproductsCurlTest extends AbstractTechproductsTest
11
{
12
+ public function setUp()
13
+ {
14
+ parent::setUp();
15
+ // The default timeout of solarium of 5s seems to be too aggressive on travis and causes random test failures.
16
+ // Set it to the PHP default of 13s.
17
+ $this->client->getEndpoint()->setTimeout(CURLOPT_TIMEOUT);
18
+ }
19
}
0 commit comments