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: I0ec3d1c0f53bf859ea1ec115ebb47f1d5f3b217c
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-03-31 14:12:49 -05:00
parent d5b08d7568
commit cc7f78cfa6
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
4 changed files with 3 additions and 4 deletions

View File

@ -21,7 +21,6 @@ keystoneauth1==3.4.0
linecache2==1.0.0
MarkupSafe==1.0
mccabe==0.2.1
mock==2.0.0
mox3==0.20.0
msgpack-python==0.4.0
netaddr==0.7.18

View File

@ -20,11 +20,11 @@ import re
import signal
import sys
import threading
from unittest import mock
# needed to get greenthreads
import fixtures
import greenlet
import mock
from oslotest import base
import six

View File

@ -14,9 +14,9 @@
# under the License.
import threading
from unittest import mock
import greenlet
import mock
from oslo_config import cfg
from oslotest import base
import six

View File

@ -13,8 +13,8 @@
# under the License.
import copy
from unittest import mock
import mock
from oslotest import base
import six