mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Fix ssh unit test test_handle_routine_single_run_invalid_retcode
This commit is contained in:
parent
d53a8c74ba
commit
f14d79af73
1 changed files with 7 additions and 1 deletions
|
@ -500,7 +500,13 @@ def test_handle_routine_single_run_invalid_retcode(opts, target, caplog):
|
|||
(
|
||||
{
|
||||
"id": "localhost",
|
||||
"ret": "Something went seriously wrong",
|
||||
"ret": {
|
||||
"stdout": "",
|
||||
"stderr": "Something went seriously wrong",
|
||||
"retcode": 1,
|
||||
"parsed": None,
|
||||
"_error": "The command resulted in a non-zero exit code",
|
||||
},
|
||||
},
|
||||
1,
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue