From c452df2c489bc2c076d5851b19d4e008e4cddb11 Mon Sep 17 00:00:00 2001 From: PB Date: Fri, 24 Nov 2023 19:46:26 +0000 Subject: [PATCH] double it --- tests/mock_clients/mock_gs.py | 2 +- tests/mock_clients/mock_s3.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mock_clients/mock_gs.py b/tests/mock_clients/mock_gs.py index 23131bf3..8a88e016 100644 --- a/tests/mock_clients/mock_gs.py +++ b/tests/mock_clients/mock_gs.py @@ -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()) diff --git a/tests/mock_clients/mock_s3.py b/tests/mock_clients/mock_s3.py index 88c00381..0a040592 100644 --- a/tests/mock_clients/mock_s3.py +++ b/tests/mock_clients/mock_s3.py @@ -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())