We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff53b4 commit 690ac6fCopy full SHA for 690ac6f
tests/unit/plugins/module_utils/test_mysql.py
@@ -45,12 +45,12 @@ def test_is_mysql():
45
"""
46
Test that server is_mysql return expect results
47
48
- assert is_mysql("mysql") == True
49
- assert is_mysql("mariadb") == False
+ assert is_mysql("mysql") is True
+ assert is_mysql("mariadb") is False
50
51
def test_is_mariadb():
52
53
Test that server is_mariadb return expect results
54
55
- assert is_mariadb("mariadb") == True
56
- assert is_mariadb("mysql") == False
+ assert is_mariadb("mariadb") is True
+ assert is_mariadb("mysql") is False
0 commit comments