mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-28 07:31:24 -07:00
Fix variable name
This commit is contained in:
parent
5d9952c2e2
commit
37e5c71366
1 changed files with 4 additions and 4 deletions
|
@ -25,16 +25,16 @@
|
|||
- name: Assert that mysql_info module used the expected version of pymysql
|
||||
assert:
|
||||
that:
|
||||
- primary_info.connector.name == connector_name
|
||||
- primary_info.connector.version == connector_version
|
||||
- primary_info.connector_name == connector_name
|
||||
- primary_info.connector_version == connector_version
|
||||
when:
|
||||
- connector_name == 'pymysql'
|
||||
|
||||
- name: Assert that mysql_info module used the expected version of mysqlclient
|
||||
assert:
|
||||
that:
|
||||
- primary_info.connector.name == 'MySQLdb'
|
||||
- primary_info.connector.version == connector_version
|
||||
- primary_info.connector_name == 'MySQLdb'
|
||||
- primary_info.connector_version == connector_version
|
||||
when:
|
||||
- connector_name == 'mysqlclient'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue