summaryrefslogtreecommitdiff
path: root/testing/test_doctest.py
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2018-10-25 00:01:29 -0700
committerAnthony Sottile <asottile@umich.edu>2018-10-25 00:01:29 -0700
commit2368fbb63cf144e2bed4120686a4a136647426f0 (patch)
tree1522f9b5ebd2560769072bb87519f3f0755db4e5 /testing/test_doctest.py
parentf6dfca71828967b2e89b406c7dd520c6641dbe29 (diff)
downloadpytest-2368fbb63cf144e2bed4120686a4a136647426f0.tar.gz
Apply reorder-python-imports to all files
Diffstat (limited to 'testing/test_doctest.py')
-rw-r--r--testing/test_doctest.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/testing/test_doctest.py b/testing/test_doctest.py
index d7815b1cf..cccfdabe6 100644
--- a/testing/test_doctest.py
+++ b/testing/test_doctest.py
@@ -1,10 +1,16 @@
# encoding: utf-8
-from __future__ import absolute_import, division, print_function
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
import sys
import textwrap
-from _pytest.compat import MODULE_NOT_FOUND_ERROR
-from _pytest.doctest import DoctestItem, DoctestModule, DoctestTextfile
+
import pytest
+from _pytest.compat import MODULE_NOT_FOUND_ERROR
+from _pytest.doctest import DoctestItem
+from _pytest.doctest import DoctestModule
+from _pytest.doctest import DoctestTextfile
class TestDoctests(object):