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 | |
| parent | a9afb77456c4e658c25cb5f76abe611d1777cd8e (diff) | |
| download | python-coveragepy-git-cb8b5b581571cdeacae82376e0e571895e2c76a9.tar.gz | |
Constructing the plugin is the plugin's business
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 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()) diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py index 65627515..2a9910d0 100644 --- a/tests/modules/plugins/another.py +++ b/tests/modules/plugins/another.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()) |
