diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2014-08-22 21:30:53 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-08-22 21:30:53 -0400 |
| commit | da16957f1b15a3b4b960a11f7d6d36448630c978 (patch) | |
| tree | 1b800ef1aa804602fe1c076a055fa9e1afc3c9a7 /tests/modules | |
| parent | 5c88838a8cfb53dac3d63b272ea137f7a4f09f87 (diff) | |
| download | python-coveragepy-git-da16957f1b15a3b4b960a11f7d6d36448630c978.tar.gz | |
Make CoveragePlugin importable from coverage
Diffstat (limited to 'tests/modules')
| -rw-r--r-- | tests/modules/plugins/a_plugin.py | 2 | ||||
| -rw-r--r-- | tests/modules/plugins/another.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/modules/plugins/a_plugin.py b/tests/modules/plugins/a_plugin.py index 93ac4854..2ff84dac 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 93ac4854..2ff84dac 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 |
