From cf9df66e022c3380ed21d3b6202034cee54be763 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Sat, 13 Jul 2019 15:20:05 +0300 Subject: [PATCH] trying to fix osx and windows tests 2 --- tests/test_pickle_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_pickle_core.py b/tests/test_pickle_core.py index 33ca16f..896f31b 100644 --- a/tests/test_pickle_core.py +++ b/tests/test_pickle_core.py @@ -253,7 +253,7 @@ def test_bad_cache_file(): target=_calls_bad_cache, kwargs={'res_queue': res_queue, 'trash_cache': False}) thread1.start() - sleep(1.5) + sleep(0.5) thread2.start() thread1.join() thread2.join() @@ -302,7 +302,7 @@ def test_delete_cache_file(): target=_calls_delete_cache, kwargs={'res_queue': res_queue, 'del_cache': False}) thread1.start() - sleep(1.5) + sleep(0.5) thread2.start() thread1.join() thread2.join()