summaryrefslogtreecommitdiff
path: root/tests/modules
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-08-22 21:30:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-08-22 21:30:53 -0400
commit1364911e2e1e4c4223aa7bb23fba70c2b1389037 (patch)
tree3c9db52d05c1837b079c41c161e4a2509b73f760 /tests/modules
parenteeaa32333bc31eff4e890870b9cdcb66948740a2 (diff)
downloadpython-coveragepy-1364911e2e1e4c4223aa7bb23fba70c2b1389037.tar.gz
Make CoveragePlugin importable from coverage
Diffstat (limited to 'tests/modules')
-rw-r--r--tests/modules/plugins/a_plugin.py2
-rw-r--r--tests/modules/plugins/another.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/modules/plugins/a_plugin.py b/tests/modules/plugins/a_plugin.py
index 93ac485..2ff84da 100644
--- a/tests/modules/plugins/a_plugin.py
+++ b/tests/modules/plugins/a_plugin.py
@@ -1,6 +1,6 @@
"""A plugin for tests to reference."""
-from coverage.plugin import CoveragePlugin
+from coverage import CoveragePlugin
class Plugin(CoveragePlugin):
pass
diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py
index 93ac485..2ff84da 100644
--- a/tests/modules/plugins/another.py
+++ b/tests/modules/plugins/another.py
@@ -1,6 +1,6 @@
"""A plugin for tests to reference."""
-from coverage.plugin import CoveragePlugin
+from coverage import CoveragePlugin
class Plugin(CoveragePlugin):
pass