mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #7631/dbba0d19 backport][stable-7] Fix osx_defaults tests (#7632)
Fix osx_defaults tests (#7631)
Fix osx_defaults tests.
(cherry picked from commit dbba0d1956
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
5c6053bf79
commit
b0910d6a47
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
|||
- name: Test if state and value are required together
|
||||
assert:
|
||||
that:
|
||||
- "'following are missing: value' in '{{ missing_value['msg'] }}'"
|
||||
- "'following are missing: value' in missing_value['msg']"
|
||||
|
||||
- name: Change value of AppleMeasurementUnits to centimeter in check_mode
|
||||
osx_defaults:
|
||||
|
@ -194,7 +194,7 @@
|
|||
register: test_data_types
|
||||
|
||||
- assert:
|
||||
that: "{{ item.changed }}"
|
||||
that: "item is changed"
|
||||
with_items: "{{ test_data_types.results }}"
|
||||
|
||||
- name: Use different data types and delete them
|
||||
|
@ -208,7 +208,7 @@
|
|||
register: test_data_types
|
||||
|
||||
- assert:
|
||||
that: "{{ item.changed }}"
|
||||
that: "item is changed"
|
||||
with_items: "{{ test_data_types.results }}"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue