summaryrefslogtreecommitdiff
path: root/tests/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/util.py')
-rw-r--r--tests/util.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/util.py b/tests/util.py
index a14bee838..120492d47 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -28,12 +28,6 @@ from sphinx.pycode import ModuleAnalyzer
from path import path, repr_as # NOQA
-try:
- # Python >=3.3
- from unittest import mock
-except ImportError:
- import mock
-
__all__ = [
'rootdir', 'tempdir', 'raises', 'raises_msg',
@@ -41,7 +35,6 @@ __all__ = [
'ListOutput', 'TestApp', 'with_app', 'gen_with_app',
'path', 'with_tempdir',
'sprint', 'remove_unicode_literals',
- 'mock',
]