From 69261496082c7ec149d63915d13b4dd238706f43 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 12 Jun 2020 09:28:41 +0200 Subject: [PATCH] Increase timeout of the appstore requests Signed-off-by: Joas Schilling --- tests/lib/App/AppStore/Fetcher/FetcherBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/App/AppStore/Fetcher/FetcherBase.php b/tests/lib/App/AppStore/Fetcher/FetcherBase.php index aa54bbb5c268d..41eecda78e24d 100644 --- a/tests/lib/App/AppStore/Fetcher/FetcherBase.php +++ b/tests/lib/App/AppStore/Fetcher/FetcherBase.php @@ -582,7 +582,7 @@ public function testGetMatchingETag() { ->with( $this->equalTo($this->endpoint), $this->equalTo([ - 'timeout' => 10, + 'timeout' => 60, 'headers' => [ 'Accept-Encoding' => 'gzip', 'If-None-Match' => '"myETag"', @@ -655,7 +655,7 @@ public function testGetNoMatchingETag() { ->with( $this->equalTo($this->endpoint), $this->equalTo([ - 'timeout' => 10, + 'timeout' => 60, 'headers' => [ 'Accept-Encoding' => 'gzip', 'If-None-Match' => '"myETag"',