Merge "Use unittest.mock instead of third party mock"
This commit is contained in:
commit
314c4e7915
@ -19,7 +19,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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -13,8 +13,8 @@
|
||||
# under the License.
|
||||
|
||||
import copy
|
||||
from unittest import mock
|
||||
|
||||
import mock
|
||||
from oslotest import base
|
||||
import six
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user