From 0ddefb97eb129af89419d6343616cb46148c6984 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 28 Apr 2021 09:14:41 +0200 Subject: [PATCH] tests: adjust curl --- tests/e2e/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/Client.php b/tests/e2e/Client.php index dd8f3692a4..0eb87afbb4 100644 --- a/tests/e2e/Client.php +++ b/tests/e2e/Client.php @@ -156,7 +156,7 @@ class Client */ public function call(string $method, string $path = '', array $headers = [], array $params = []) { - sleep(0.5); + usleep(128); $headers = array_merge($this->headers, $headers); $ch = curl_init($this->endpoint . $path . (($method == self::METHOD_GET && !empty($params)) ? '?' . http_build_query($params) : '')); $responseHeaders = [];