mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-25 17:50:23 -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
|
@ -62,8 +62,8 @@
|
|||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.failed == 0
|
||||
- result.changed == false
|
||||
- result is not failed
|
||||
- result is not changed
|
||||
#----------------------------------------------------------
|
||||
- name: delete a vpc
|
||||
hwc_network_vpc:
|
||||
|
@ -97,5 +97,5 @@
|
|||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.failed == 0
|
||||
- result.changed == false
|
||||
- result is not failed
|
||||
- result is not changed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue