Skip to content

Commit 690ac6f

Browse files
committed
Fix sanity checks
1 parent fff53b4 commit 690ac6f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/unit/plugins/module_utils/test_mysql.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ def test_is_mysql():
4545
"""
4646
Test that server is_mysql return expect results
4747
"""
48-
assert is_mysql("mysql") == True
49-
assert is_mysql("mariadb") == False
48+
assert is_mysql("mysql") is True
49+
assert is_mysql("mariadb") is False
5050

5151
def test_is_mariadb():
5252
"""
5353
Test that server is_mariadb return expect results
5454
"""
55-
assert is_mariadb("mariadb") == True
56-
assert is_mariadb("mysql") == False
55+
assert is_mariadb("mariadb") is True
56+
assert is_mariadb("mysql") is False

0 commit comments

Comments
 (0)