mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-22 10:21:29 -07:00
Update tests/unit/plugins/module_utils/test_mysql_user.py
This commit is contained in:
parent
8c6b600df5
commit
0dcb024390
1 changed files with 4 additions and 1 deletions
|
@ -4,7 +4,10 @@ from __future__ import (absolute_import, division, print_function)
|
|||
__metaclass__ = type
|
||||
|
||||
import pytest
|
||||
|
||||
try:
|
||||
from unittest.mock import MagicMock
|
||||
except ImportError:
|
||||
from mock import MagicMock
|
||||
from ansible_collections.community.mysql.plugins.module_utils.user import (
|
||||
handle_grant_on_col,
|
||||
has_grant_on_col,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue