mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Massive adjustment in integration tests for changed and failed (#2577)
* Replaced ".changed ==" with "is [not] changed". Same for failed * Mr Quote refused to go
This commit is contained in:
parent
3100c32a00
commit
d7e55db99b
69 changed files with 220 additions and 220 deletions
|
@ -40,7 +40,7 @@
|
|||
- assert:
|
||||
that:
|
||||
- "'changed' in sync_result"
|
||||
- "sync_result.changed == true"
|
||||
- sync_result is changed
|
||||
- "'cmd' in sync_result"
|
||||
- "'rsync' in sync_result.cmd"
|
||||
- "'msg' in sync_result"
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
- assert:
|
||||
that:
|
||||
- "sync_result.changed == False"
|
||||
- sync_result is not changed
|
||||
|
||||
- name: cleanup old files
|
||||
file:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue