Skip to content

Commit

Permalink
double it
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbull committed Nov 24, 2023
1 parent dd77ad9 commit c452df2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/mock_clients/mock_gs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def download_to_filename(self, filename):
# before the directory actually exists.
waits = 50
while not to_path.parent.exists() and waits > 0:
sleep(0.1)
sleep(0.2)
waits -= 1

to_path.write_bytes(from_path.read_bytes())
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_clients/mock_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def download_file(self, to_path, Config=None, ExtraArgs=None):
# before the directory actually exists.
waits = 50
while not to_path.parent.exists() and waits > 0:
sleep(0.1)
sleep(0.2)
waits -= 1

to_path.write_bytes(self.path.read_bytes())
Expand Down

0 comments on commit c452df2

Please sign in to comment.