diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2015-07-14 15:59:00 -0400 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2015-07-14 15:59:18 -0400 |
commit | 323362e23a970e9b649fa40a402f322b9efdc497 (patch) | |
tree | c5e46b8d07fb62142b3cc70d76ac90b5c06212fd /test/units | |
parent | 3e293f524a062565599142559aa35b7e814d29ce (diff) | |
download | ansible-323362e23a970e9b649fa40a402f322b9efdc497.tar.gz |
added stdout to test result
Diffstat (limited to 'test/units')
-rw-r--r-- | test/units/executor/test_task_executor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/executor/test_task_executor.py b/test/units/executor/test_task_executor.py index 64ce1d5faa..966be3c8c7 100644 --- a/test/units/executor/test_task_executor.py +++ b/test/units/executor/test_task_executor.py @@ -299,7 +299,7 @@ class TestTaskExecutor(unittest.TestCase): def _get(*args, **kwargs): mock_action = MagicMock() - mock_action.run.return_value = dict() + mock_action.run.return_value = dict(stdout='') return mock_action # testing with some bad values in the result passed to poll async, |