diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-30 11:30:55 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-30 11:30:55 -0400 |
commit | 02adbba0489d0ff1f02677dd2cb8c4551020ddc1 (patch) | |
tree | c4f5b5443c43f536885a03140f4c49f6c1bb5fad /test/test_testplugin.py | |
parent | 367dc70c9dcb1366503eb8441f1ded4d1093fb9c (diff) | |
download | python-coveragepy-02adbba0489d0ff1f02677dd2cb8c4551020ddc1.tar.gz |
Move the test runner plugins into their own sub-package.
Diffstat (limited to 'test/test_testplugin.py')
-rw-r--r-- | test/test_testplugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_testplugin.py b/test/test_testplugin.py index 87e2e4b..98459f5 100644 --- a/test/test_testplugin.py +++ b/test/test_testplugin.py @@ -1,7 +1,7 @@ import py import unittest from nose.plugins import PluginTester -from coverage.noseplugin import Coverage +from coverage.runners.noseplugin import Coverage class TestCoverage(PluginTester, unittest.TestCase): activate = '--with-coverage' # enables the plugin |