diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-05 11:21:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-05 11:21:26 -0400 |
commit | cb8b5b581571cdeacae82376e0e571895e2c76a9 (patch) | |
tree | a3f19b97698925f1b75a5936abef10048c8baaca /tests/modules/plugins/a_plugin.py | |
parent | a9afb77456c4e658c25cb5f76abe611d1777cd8e (diff) | |
download | python-coveragepy-git-cb8b5b581571cdeacae82376e0e571895e2c76a9.tar.gz |
Constructing the plugin is the plugin's business
Diffstat (limited to 'tests/modules/plugins/a_plugin.py')
-rw-r--r-- | tests/modules/plugins/a_plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/plugins/a_plugin.py b/tests/modules/plugins/a_plugin.py index 65627515..2a9910d0 100644 --- a/tests/modules/plugins/a_plugin.py +++ b/tests/modules/plugins/a_plugin.py @@ -6,4 +6,4 @@ class Plugin(CoveragePlugin): pass def coverage_init(reg, options): - reg.add_file_tracer(Plugin(options)) + reg.add_file_tracer(Plugin()) |