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 | 4c3f5a33a2ae10376ba1312d299ad087a716a943 (patch) | |
| tree | 2cc01a072c9721fb2752be4b3ca5f431589407c7 /tests/modules/plugins/a_plugin.py | |
| parent | 152d22cfbae8a8371acabe35ae3de61fb31708d3 (diff) | |
| download | python-coveragepy-4c3f5a33a2ae10376ba1312d299ad087a716a943.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 6562751..2a9910d 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()) |
