Skip to content

Commit

Permalink
Fix sanity checks
Browse files Browse the repository at this point in the history
  • Loading branch information
wfelipew committed Jan 16, 2024
1 parent fff53b4 commit 690ac6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/plugins/module_utils/test_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 690ac6f

Please sign in to comment.