Merge "Use unittest.mock instead of third party mock"

This commit is contained in:
Zuul 2020-04-06 14:57:51 +00:00 committed by Gerrit Code Review
commit 5f49e8f688
5 changed files with 3 additions and 5 deletions

View File

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

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import mock from unittest import mock
from oslotest import base from oslotest import base

View File

@ -16,10 +16,10 @@ import copy
import fixtures import fixtures
import functools import functools
import logging as pylogging import logging as pylogging
import mock
import platform import platform
import sys import sys
import time import time
from unittest import mock
from oslo_log import formatters from oslo_log import formatters
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -19,8 +19,8 @@ import pipes
import platform import platform
import sys import sys
import tempfile import tempfile
from unittest import mock
import mock
import testtools import testtools
from oslo_privsep import daemon from oslo_privsep import daemon

View File

@ -4,7 +4,6 @@
hacking>=3.0,<3.1.0 # Apache-2.0 hacking>=3.0,<3.1.0 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0
mock>=2.0.0 # BSD
fixtures>=3.0.0 # Apache-2.0/BSD fixtures>=3.0.0 # Apache-2.0/BSD
stestr>=2.0.0 # Apache-2.0 stestr>=2.0.0 # Apache-2.0