diff options
| author | Sean McGinnis <sean.mcginnis@gmail.com> | 2020-04-18 11:59:46 -0500 |
|---|---|---|
| committer | Sean McGinnis <sean.mcginnis@gmail.com> | 2020-04-18 11:59:46 -0500 |
| commit | 2b8282bb1e254e7716eab106ca8cc0d6c0097a51 (patch) | |
| tree | 69421dff2e41b0f63d7be67a01e2b339d5fe34aa /troveclient/tests/test_limits.py | |
| parent | e651e5de5143ad47715c7b41a8e06574ce296f23 (diff) | |
| download | python-troveclient-2b8282bb1e254e7716eab106ca8cc0d6c0097a51.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: Ib83e626f51e6e01898bb7931c1660a1a548500f3
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
Diffstat (limited to 'troveclient/tests/test_limits.py')
| -rw-r--r-- | troveclient/tests/test_limits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/troveclient/tests/test_limits.py b/troveclient/tests/test_limits.py index a4b1271..7779d5c 100644 --- a/troveclient/tests/test_limits.py +++ b/troveclient/tests/test_limits.py @@ -15,8 +15,8 @@ # License for the specific language governing permissions and limitations # under the License. -import mock import testtools +from unittest import mock from troveclient.v1 import limits |
