From 107bbf57fb770a96f549ff67e33a55e3e4cd24be Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 28 Apr 2021 08:10:40 +0200 Subject: [PATCH] tests: debug travis --- tests/e2e/Client.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/Client.php b/tests/e2e/Client.php index 2d8eff9515..87ec6211e4 100644 --- a/tests/e2e/Client.php +++ b/tests/e2e/Client.php @@ -156,6 +156,7 @@ class Client */ public function call(string $method, string $path = '', array $headers = [], array $params = []) { + sleep(2); $headers = array_merge($this->headers, $headers); $ch = curl_init($this->endpoint . $path . (($method == self::METHOD_GET && !empty($params)) ? '?' . http_build_query($params) : '')); $responseHeaders = [];