diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-31 09:18:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-31 10:08:59 -0500 |
commit | 2faae252d853572cf7403528075461569ac137d1 (patch) | |
tree | 609cef41369533ee7950f67c8054ceb778387ea6 /tests/test_api.py | |
parent | 65b5830a4d13d65c3bb314dd4894d565a16ceb9b (diff) | |
download | python-coveragepy-git-2faae252d853572cf7403528075461569ac137d1.tar.gz |
style: correct placement of auto-added pytest imports
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index be7cc83e..7d75022e 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -12,6 +12,7 @@ import shutil import sys import textwrap +import pytest from unittest_mixins import change_dir import coverage @@ -22,7 +23,6 @@ from coverage.files import abs_file, relative_filename from coverage.misc import CoverageException from tests.coveragetest import CoverageTest, CoverageTestMethodsMixin, TESTS_DIR, UsingModulesMixin -import pytest class ApiTest(CoverageTest): |