diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-30 10:52:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-30 10:52:18 -0400 |
commit | 3857dc54ab75099bebaf1ba8f89494784edec5ee (patch) | |
tree | be15176a6a3e98435efb9f574257a991ac035cb6 /tests/test_plugins.py | |
parent | 6489df5a854f1616b8456049fcc3be0493743b3b (diff) | |
download | python-coveragepy-git-3857dc54ab75099bebaf1ba8f89494784edec5ee.tar.gz |
Pragmas for metacoverage
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!") |