summaryrefslogtreecommitdiff
path: root/test/test_farm.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
commit04ef8ebce940e5ab73c770a418ecf9721f4e12f8 (patch)
treeab4cd0b8c54c87cddaafb34a1cca105a84790cea /test/test_farm.py
parentaf55a14f14ef3041690c810a61c62d22a089bfc8 (diff)
downloadpython-coveragepy-git-04ef8ebce940e5ab73c770a418ecf9721f4e12f8.tar.gz
Get rid of import craziness in the tests.
Diffstat (limited to 'test/test_farm.py')
-rw-r--r--test/test_farm.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_farm.py b/test/test_farm.py
index c343e2f7..f25d6109 100644
--- a/test/test_farm.py
+++ b/test/test_farm.py
@@ -3,8 +3,7 @@
import difflib, filecmp, fnmatch, glob, os, re, shutil, sys
from nose.plugins.skip import SkipTest
-sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k
-from backtest import run_command, execfile # pylint: disable=W0622
+from test.backtest import run_command, execfile # pylint: disable=W0622
from coverage.control import _TEST_NAME_FILE