mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix sanity checks
This commit is contained in:
parent
fff53b4017
commit
690ac6fb13
1 changed files with 4 additions and 4 deletions
|
@ -45,12 +45,12 @@ def test_is_mysql():
|
|||
"""
|
||||
Test that server is_mysql return expect results
|
||||
"""
|
||||
assert is_mysql("mysql") == True
|
||||
assert is_mysql("mariadb") == False
|
||||
assert is_mysql("mysql") is True
|
||||
assert is_mysql("mariadb") is False
|
||||
|
||||
def test_is_mariadb():
|
||||
"""
|
||||
Test that server is_mariadb return expect results
|
||||
"""
|
||||
assert is_mariadb("mariadb") == True
|
||||
assert is_mariadb("mysql") == False
|
||||
assert is_mariadb("mariadb") is True
|
||||
assert is_mariadb("mysql") is False
|
||||
|
|
Loading…
Add table
Reference in a new issue