reduce async timeout

reduce from 3 sec to 0.1 sec; the 3 sec sleep was about half of the total unittest time on my development machine...
This commit is contained in:
Robin Roth 2016-05-10 08:09:28 +02:00
parent 30decd5e0a
commit 254cf9ea68

View file

@ -372,8 +372,8 @@ class TestTaskExecutor(unittest.TestCase):
mock_host = MagicMock()
mock_task = MagicMock()
mock_task.async = 3
mock_task.poll = 1
mock_task.async = 0.1
mock_task.poll = 0.05
mock_play_context = MagicMock()