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/plugin2.py | |
parent | a9afb77456c4e658c25cb5f76abe611d1777cd8e (diff) | |
download | python-coveragepy-git-cb8b5b581571cdeacae82376e0e571895e2c76a9.tar.gz |
Constructing the plugin is the plugin's business
Diffstat (limited to 'tests/plugin2.py')
-rw-r--r-- | tests/plugin2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin2.py b/tests/plugin2.py index 9c3cb1d4..ebac210d 100644 --- a/tests/plugin2.py +++ b/tests/plugin2.py @@ -43,4 +43,4 @@ class FileReporter(coverage.plugin.FileReporter): def coverage_init(reg, options): """Called by coverage to initialize the plugins here.""" - reg.add_file_tracer(Plugin(options)) + reg.add_file_tracer(Plugin()) |