diff options
| author | Sean McGinnis <sean.mcginnis@gmail.com> | 2020-04-18 11:58:31 -0500 |
|---|---|---|
| committer | Sean McGinnis <sean.mcginnis@gmail.com> | 2020-04-18 11:58:31 -0500 |
| commit | ee55c043c26a3e135e898792fb051a64d960559b (patch) | |
| tree | e06846b4437dd0ef737ce6fb87d0a1e06dea0918 /keystoneclient/tests/unit/auth/utils.py | |
| parent | a9d01eef93eef576bcecabf54e86c3a7a49651c8 (diff) | |
| download | python-keystoneclient-ee55c043c26a3e135e898792fb051a64d960559b.tar.gz | |
Use unittest.mock instead of third party mock
Now that we no longer support py27, we can use the standard library
unittest.mock module instead of the third party mock lib.
Change-Id: I7498ea2353cccca7b23d9ef74015a566ac431f90
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
Diffstat (limited to 'keystoneclient/tests/unit/auth/utils.py')
| -rw-r--r-- | keystoneclient/tests/unit/auth/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/tests/unit/auth/utils.py b/keystoneclient/tests/unit/auth/utils.py index b693172..1e346e3 100644 --- a/keystoneclient/tests/unit/auth/utils.py +++ b/keystoneclient/tests/unit/auth/utils.py @@ -11,10 +11,10 @@ # under the License. import functools +from unittest import mock import uuid from keystoneauth1 import fixture -import mock from oslo_config import cfg from keystoneclient import access |
