summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2020-07-28 11:27:33 -0700
committerTim Burke <tim.burke@gmail.com>2020-07-28 11:28:30 -0700
commit89c8d9b853aa02e0a90682d04cec2cd42f740e80 (patch)
treeff5d2e7a7cd7a830a2738f4e05903e68dbd3bdc5
parent22d1f3a39a9b23a62f443c2bd8ab9639c1b5a669 (diff)
downloadpython-swiftclient-89c8d9b853aa02e0a90682d04cec2cd42f740e80.tar.gz
Speed up test_lazy_connections
It doesn't really need to sleep a full second. Change-Id: Ida80f0c5a983edb33a93662badb6aa1a25f9a27c
-rw-r--r--test/unit/test_multithreading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_multithreading.py b/test/unit/test_multithreading.py
index 8944d48..e9732cd 100644
--- a/test/unit/test_multithreading.py
+++ b/test/unit/test_multithreading.py
@@ -37,7 +37,7 @@ class ThreadTestCase(unittest.TestCase):
self.got_args_kwargs.put((args, kwargs))
if item == 'sleep':
- sleep(1)
+ sleep(.1)
if item == 'go boom':
raise Exception('I went boom!')