summaryrefslogtreecommitdiff
path: root/tests/test_websupport.py
diff options
context:
space:
mode:
authorTakayuki Shimizukawa <shimizukawa@gmail.com>2014-04-30 21:30:46 +0900
committerTakayuki Shimizukawa <shimizukawa@gmail.com>2014-04-30 21:30:46 +0900
commit1e5806269243d5d10bb4f1421b9b5448963e704a (patch)
tree10eb2c9270c8dc73156fafdcdb4c6d04fe441f44 /tests/test_websupport.py
parentf31d9113ffc1c58bfcc47f2a29439102b62801fc (diff)
downloadsphinx-git-1e5806269243d5d10bb4f1421b9b5448963e704a.tar.gz
remove 'six' name except importing line.
Diffstat (limited to 'tests/test_websupport.py')
-rw-r--r--tests/test_websupport.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_websupport.py b/tests/test_websupport.py
index 7c7a4f0f3..d355422c9 100644
--- a/tests/test_websupport.py
+++ b/tests/test_websupport.py
@@ -12,7 +12,7 @@
import os
from functools import wraps
-import six
+from six import StringIO
from sphinx.websupport import WebSupport
from sphinx.websupport.errors import DocumentNotFoundError, \
@@ -31,8 +31,8 @@ from util import test_root, raises, skip_if
default_settings = {'builddir': os.path.join(test_root, 'websupport'),
- 'status': six.StringIO(),
- 'warning': six.StringIO()}
+ 'status': StringIO(),
+ 'warning': StringIO()}
def teardown_module():
(test_root / 'generated').rmtree(True)