diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-08 13:31:52 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-08 13:31:52 -0500 |
commit | 252b90a8c232c6c2691869f0dcd4f9e00c7b1aac (patch) | |
tree | 87dad7ec96251294bab2ccc76284613cc3b7f63a /tests/test_plugins.py | |
parent | 44643bd88b90c3ae0afe9dd4b9c9094d868d60b1 (diff) | |
download | python-coveragepy-git-252b90a8c232c6c2691869f0dcd4f9e00c7b1aac.tar.gz |
You got me, pylint!
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 0e3c9865..c17b83bd 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -112,7 +112,7 @@ class LoadPluginsTest(CoverageTest): """) msg_pat = "Plugin module 'no_plugin' didn't define a Plugin class" with self.assertRaisesRegex(CoverageException, msg_pat): - plugins = list(Plugins.load_plugins(["no_plugin"], None)) + list(Plugins.load_plugins(["no_plugin"], None)) class PluginTest(CoverageTest): |