diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-12 09:28:41 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-06-12 13:01:06 +0200 |
commit | b6d5979d0ab8eb0ebf32b58f2c067a571634ab5e (patch) | |
tree | 9b856bcf01410bf1001f9b709c631cf91e91a72c /tests/lib/App | |
parent | c3267a58c9ede5ad793079f9e2ad414fdf18a562 (diff) | |
download | nextcloud-server-b6d5979d0ab8eb0ebf32b58f2c067a571634ab5e.tar.gz nextcloud-server-b6d5979d0ab8eb0ebf32b58f2c067a571634ab5e.zip |
Increase timeout of the appstore requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/App')
-rw-r--r-- | tests/lib/App/AppStore/Fetcher/FetcherBase.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/App/AppStore/Fetcher/FetcherBase.php b/tests/lib/App/AppStore/Fetcher/FetcherBase.php index 2e04f22760e..199bcd4b59b 100644 --- a/tests/lib/App/AppStore/Fetcher/FetcherBase.php +++ b/tests/lib/App/AppStore/Fetcher/FetcherBase.php @@ -550,7 +550,7 @@ abstract class FetcherBase extends TestCase { ->with( $this->equalTo($this->endpoint), $this->equalTo([ - 'timeout' => 10, + 'timeout' => 60, 'headers' => [ 'If-None-Match' => '"myETag"' ] @@ -622,7 +622,7 @@ abstract class FetcherBase extends TestCase { ->with( $this->equalTo($this->endpoint), $this->equalTo([ - 'timeout' => 10, + 'timeout' => 60, 'headers' => [ 'If-None-Match' => '"myETag"', ] @@ -709,7 +709,7 @@ abstract class FetcherBase extends TestCase { ->with( $this->equalTo($this->endpoint), $this->equalTo([ - 'timeout' => 10, + 'timeout' => 60, ]) ) ->willReturn($response); |