diff options
author | shimizukawa <shimizukawa@gmail.com> | 2016-10-15 16:22:27 +0900 |
---|---|---|
committer | shimizukawa <shimizukawa@gmail.com> | 2016-10-15 16:22:27 +0900 |
commit | 487f3db5f688da34df17243167daabfc9724db47 (patch) | |
tree | bcfdc222e28a1b53f1ca2b64fe33c28268298829 /tests/test_domain_std.py | |
parent | ec8dd32e3576f9ec22ccae7145d38a1642cfa049 (diff) | |
download | sphinx-git-487f3db5f688da34df17243167daabfc9724db47.tar.gz |
To simplify, sphinx uses external mock package even if unittest.mock exists.
Diffstat (limited to 'tests/test_domain_std.py')
-rw-r--r-- | tests/test_domain_std.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 5bd9f805b..4f892cb01 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -10,9 +10,9 @@ """ from docutils import nodes +import mock from sphinx.domains.std import StandardDomain -from util import mock def test_process_doc_handle_figure_caption(): |