diff options
| author | Zuul <zuul@review.opendev.org> | 2020-06-09 18:14:00 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2020-06-09 18:14:00 +0000 |
| commit | 670fe7ce2a31f3111bc3fb80dd80a43500daab87 (patch) | |
| tree | 73560159fe538c9b85a7712bcfabfdbfc8e35741 /heatclient/tests/unit/test_shell.py | |
| parent | 3fa304428c8837174d045bb271a397346e66a3d8 (diff) | |
| parent | 8a9566864f678913bdcfcdfc7aac0e04e98d78b7 (diff) | |
| download | python-heatclient-2.2.0.tar.gz | |
Merge "Use unittest.mock instead of third party mock"2.2.0
Diffstat (limited to 'heatclient/tests/unit/test_shell.py')
| -rw-r--r-- | heatclient/tests/unit/test_shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/tests/unit/test_shell.py b/heatclient/tests/unit/test_shell.py index 0c8b272..c29a3a2 100644 --- a/heatclient/tests/unit/test_shell.py +++ b/heatclient/tests/unit/test_shell.py @@ -14,11 +14,11 @@ import os import sys import tempfile +from unittest import mock import uuid import fixtures from keystoneauth1 import fixture as keystone_fixture -import mock from oslo_serialization import jsonutils from oslo_utils import encodeutils from requests_mock.contrib import fixture as rm_fixture |
