Merge "Remove the dependency on the "mock" package"

This commit is contained in:
Zuul 2020-04-03 15:52:58 +00:00 committed by Gerrit Code Review
commit 19d11f66aa
7 changed files with 9 additions and 7 deletions

View File

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

View File

@ -13,7 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
import mock
from unittest import mock
from ovsdbapp import exceptions as exc
from ovsdbapp.schema.open_vswitch import impl_idl

View File

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

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
import mock
from unittest import mock
from ovsdbapp import api
from ovsdbapp.backend.ovs_idl import idlutils

View File

@ -10,7 +10,7 @@
# License for the specific language governing permissions and limitations
# under the License.
import mock
from unittest import mock
from ovsdbapp.backend import ovs_idl
from ovsdbapp.backend.ovs_idl import idlutils

View File

@ -12,7 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
import mock
from unittest import mock
import testtools
from ovsdbapp import exceptions

View File

@ -13,9 +13,9 @@
# under the License.
import sys
from unittest import mock
import fixtures
import mock
import testtools
from ovsdbapp import api