From 89c8d9b853aa02e0a90682d04cec2cd42f740e80 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Tue, 28 Jul 2020 11:27:33 -0700 Subject: [PATCH] Speed up test_lazy_connections It doesn't really need to sleep a full second. Change-Id: Ida80f0c5a983edb33a93662badb6aa1a25f9a27c --- test/unit/test_multithreading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/test_multithreading.py b/test/unit/test_multithreading.py index 8944d48e..e9732cd8 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!')