From cb8b5b581571cdeacae82376e0e571895e2c76a9 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 5 Jul 2015 11:21:26 -0400 Subject: Constructing the plugin is the plugin's business --- tests/modules/plugins/a_plugin.py | 2 +- tests/modules/plugins/another.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/modules/plugins') 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()) -- cgit v1.2.1