Merge "Use unittest.mock instead of mock"

This commit is contained in:
Zuul 2020-12-28 11:08:16 +00:00 committed by Gerrit Code Review
commit cbdad01278
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
import mock
from unittest import mock
import os
import tempfile
import unittest

View File

@ -17,7 +17,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
import datetime
import mock
from unittest import mock
import re
import tempfile
import unittest