summaryrefslogtreecommitdiff
path: root/saharaclient/tests/unit/osc/v1/fakes.py
diff options
context:
space:
mode:
authorSean McGinnis <sean.mcginnis@gmail.com>2020-04-18 11:59:13 -0500
committerSean McGinnis <sean.mcginnis@gmail.com>2020-04-18 11:59:13 -0500
commit5b6f800139b541b8c4ed7fb22d26261f969c1d06 (patch)
treee2ece2e0b928b85404d862a5f5acc5029a5b9cac /saharaclient/tests/unit/osc/v1/fakes.py
parent8c7735d7acc1962e410af2d0d2d2be8e756f395f (diff)
downloadpython-saharaclient-5b6f800139b541b8c4ed7fb22d26261f969c1d06.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: I96263b774551821745a2345ffb2df3bf2a2dcf05 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
Diffstat (limited to 'saharaclient/tests/unit/osc/v1/fakes.py')
-rw-r--r--saharaclient/tests/unit/osc/v1/fakes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/saharaclient/tests/unit/osc/v1/fakes.py b/saharaclient/tests/unit/osc/v1/fakes.py
index af374b8..a26a23e 100644
--- a/saharaclient/tests/unit/osc/v1/fakes.py
+++ b/saharaclient/tests/unit/osc/v1/fakes.py
@@ -14,8 +14,8 @@
# limitations under the License.
-import mock
from osc_lib.tests import utils
+from unittest import mock
class TestDataProcessing(utils.TestCommand):