Speed up test_lazy_connections

It doesn't really need to sleep a full second.

Change-Id: Ida80f0c5a983edb33a93662badb6aa1a25f9a27c
This commit is contained in:
Tim Burke 2020-07-28 11:27:33 -07:00
parent 22d1f3a39a
commit 89c8d9b853
1 changed files with 1 additions and 1 deletions

View File

@ -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!')