mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
added stdout to test result
This commit is contained in:
parent
3e293f524a
commit
323362e23a
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ class TestTaskExecutor(unittest.TestCase):
|
||||||
|
|
||||||
def _get(*args, **kwargs):
|
def _get(*args, **kwargs):
|
||||||
mock_action = MagicMock()
|
mock_action = MagicMock()
|
||||||
mock_action.run.return_value = dict()
|
mock_action.run.return_value = dict(stdout='')
|
||||||
return mock_action
|
return mock_action
|
||||||
|
|
||||||
# testing with some bad values in the result passed to poll async,
|
# testing with some bad values in the result passed to poll async,
|
||||||
|
|
Loading…
Reference in a new issue