mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 05:55:13 +00:00
test(integration): fix for ansible-core devel changes in register (#11720)
This commit is contained in:
parent
08442186e6
commit
982f9472c5
1 changed files with 3 additions and 3 deletions
|
|
@ -110,9 +110,9 @@ cmd_echo_tests:
|
|||
check_mode: true
|
||||
expect_error: true # because if result contains rc != 0, ansible assumes error
|
||||
assertions:
|
||||
- test_result.rc == None
|
||||
- test_result.out == None
|
||||
- test_result.err == None
|
||||
- test_result.rc | default(None) == None
|
||||
- test_result.out | default(None) == None
|
||||
- test_result.err | default(None) == None
|
||||
|
||||
- name: set aa and tt value
|
||||
arg_formats:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue