mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #15797 from robinro/patch-1
reduce async timeout in unittests
This commit is contained in:
commit
bc7405efc9
1 changed files with 2 additions and 2 deletions
|
@ -410,8 +410,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()
|
||||
|
||||
|
|
Loading…
Reference in a new issue