diff options
| author | Georg Brandl <georg@python.org> | 2013-04-01 11:39:32 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2013-04-01 11:39:32 +0200 |
| commit | 1f56d98b998bcc0b5eb0b3bf375789fc1a42bcfb (patch) | |
| tree | b3fd18795328347c142bb1adaa56ee00b0690e61 /tests/test_searchadapters.py | |
| parent | 031582c0b85de68dbcaf2cf9377c513deee1d0be (diff) | |
| download | sphinx-1f56d98b998bcc0b5eb0b3bf375789fc1a42bcfb.tar.gz | |
tests: replace "from util import *" by explicit imports
Diffstat (limited to 'tests/test_searchadapters.py')
| -rw-r--r-- | tests/test_searchadapters.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_searchadapters.py b/tests/test_searchadapters.py index 551eefb9..ad1e58f2 100644 --- a/tests/test_searchadapters.py +++ b/tests/test_searchadapters.py @@ -9,15 +9,13 @@ :license: BSD, see LICENSE for details. """ -import os, sys +import os from StringIO import StringIO -from nose import SkipTest - from sphinx.websupport import WebSupport from test_websupport import sqlalchemy_missing -from util import * +from util import test_root, skip_if, skip_unless_importable def clear_builddir(): |
