mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-04 13:14:26 -07:00
Fix: skip assertion on mariadb 10.2
This commit is contained in:
parent
b7b4e2dc71
commit
b0d220d8d4
1 changed files with 2 additions and 0 deletions
|
@ -145,10 +145,12 @@
|
||||||
plugin_hash_string: '{{ test_plugin_hash }}'
|
plugin_hash_string: '{{ test_plugin_hash }}'
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
# FIXME: on mariadb 10.2 there's always a change
|
||||||
- name: Check that the module doesn't make a change when the same hash is passed in
|
- name: Check that the module doesn't make a change when the same hash is passed in
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- "result.changed == false"
|
||||||
|
when: install_type == 'mysql' or (install_type == 'mariadb' and mariadb_version is version('10.3', '>='))
|
||||||
|
|
||||||
- include: assert_user.yml user_name={{ test_user_name }} priv={{ test_default_priv_type }}
|
- include: assert_user.yml user_name={{ test_user_name }} priv={{ test_default_priv_type }}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue