diff options
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 686dcf99..a4c4a0a9 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -150,7 +150,7 @@ class PluginTest(CoverageTest): cov = coverage.Coverage() cov.set_option("run:plugins", ["my_plugin"]) cov.start() - cov.stop() + cov.stop() # pragma: nested with open("evidence.out") as f: self.assertEqual(f.read(), "we are here!") |