Skip to content

Commit

Permalink
Allow the test browser 10 seconds for downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
pabzm committed Aug 30, 2024
1 parent e04325a commit 3a8353c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Browser/Browser.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public function readDownloadedFile($filename)
// Give the browser a chance to finish download
$n = 0;
while (!file_exists($filename)) {
if ($n++ > 5) {
if ($n++ > 10) {
break;
}
sleep(1);
Expand Down

0 comments on commit 3a8353c

Please sign in to comment.