mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
* Replaced ".changed ==" with "is [not] changed". Same for failed
* Mr Quote refused to go
(cherry picked from commit d7e55db99b
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
87c37ea441
commit
35c8bbec8a
69 changed files with 220 additions and 220 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
- assert:
|
||||
that:
|
||||
- iso_extract_test0 is changed == true
|
||||
- iso_extract_test0 is changed
|
||||
|
||||
- name: Extract the iso again
|
||||
iso_extract:
|
||||
|
@ -42,11 +42,11 @@
|
|||
- name: Test iso_extract_test0_again (normal mode)
|
||||
assert:
|
||||
that:
|
||||
- iso_extract_test0_again is changed == false
|
||||
- iso_extract_test0_again is not changed
|
||||
when: not in_check_mode
|
||||
|
||||
- name: Test iso_extract_test0_again (check-mode)
|
||||
assert:
|
||||
that:
|
||||
- iso_extract_test0_again is changed == true
|
||||
- iso_extract_test0_again is changed
|
||||
when: in_check_mode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue