Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
- name: ensure configcheck fails task with when run without mpm modules
assert:
that:
- "{{ item.failed }}"
- item is failed
with_items: "{{ remove_with_configcheck.results }}"

- name: try to disable all mpm modules without configcheck
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/targets/decompress/tasks/dest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@

- name: Test that file exists
assert:
that: "{{ item.stat.exists }}"
that:
- item.stat.exists
quiet: true
loop: "{{ result_files_stat.results }}"
loop_control:
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/targets/ldap_search/tasks/tests/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@
that:
- output is not failed
- output.results | length >= 1
- "{{ 'displayName' in output.results.0.attrs }}"
- >-
'displayName' in output.results.0.attrs