Skip to content

Commit

Permalink
Increase timeout of the appstore requests
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Jun 12, 2020
1 parent 03a709b commit 6926149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lib/App/AppStore/Fetcher/FetcherBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
Expand Down Expand Up @@ -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"',
Expand Down

0 comments on commit 6926149

Please sign in to comment.