Fix #6140: Use unittest.mock instead of mock

This commit is contained in:
Takeshi KOMIYA
2019-03-07 23:35:36 +09:00
parent 177246a49e
commit 65970a3033
15 changed files with 25 additions and 24 deletions

View File

@@ -12,9 +12,7 @@
from collections import namedtuple
from inspect import cleandoc
from textwrap import dedent
from unittest import TestCase
import mock
from unittest import TestCase, mock
from sphinx.ext.napoleon import Config
from sphinx.ext.napoleon.docstring import GoogleDocstring, NumpyDocstring