summaryrefslogtreecommitdiff
path: root/test/test_testing.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-12-30 10:17:27 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-12-30 10:17:27 -0500
commit9a0a53a1ed6ef2d6d8d3527159f4bbf8d263fe5c (patch)
treea67216d5a88802f344e4792cc2df1cc825f56e70 /test/test_testing.py
parent58ee130ddb97c338383c1bcd6f1f0b27b1d3464c (diff)
downloadpython-coveragepy-9a0a53a1ed6ef2d6d8d3527159f4bbf8d263fe5c.tar.gz
Get rid of import craziness in the tests.
Diffstat (limited to 'test/test_testing.py')
-rw-r--r--test/test_testing.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_testing.py b/test/test_testing.py
index fcbffcd..c2d1453 100644
--- a/test/test_testing.py
+++ b/test/test_testing.py
@@ -2,10 +2,9 @@
"""Tests that our test infrastructure is really working!"""
import os, sys
-sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k
from coverage.backward import to_bytes, rpartition
-from backunittest import TestCase
-from coveragetest import CoverageTest
+from test.backunittest import TestCase
+from test.coveragetest import CoverageTest
from coverage.backward import set # pylint: disable=W0622