Rename variable for consistency

This commit is contained in:
Laurent Indermuehle 2023-01-20 14:02:28 +01:00
commit 05215dc1c3
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
5 changed files with 10 additions and 10 deletions

View file

@ -372,7 +372,7 @@
or (
db_engine == 'mysql'
and connector_name == 'mysqlclient'
and connector_ver is version('2.0.1', '>')
and connector_version is version('2.0.1', '>')
)
# Issue https://github.com/ansible-collections/community.mysql/issues/268
@ -386,7 +386,7 @@
- result is changed
when:
- connector_name == 'mysqlclient'
- connector_ver is version('2.0.1', '==')
- connector_version is version('2.0.1', '==')
- db_engine == 'mysql'
- name: Drop db {{ test_db }}