diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-03 12:42:25 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-03 12:42:25 -0400 |
commit | 9a3c3e8b65070b31daf31cc149f28241cead89bf (patch) | |
tree | 5840baa8deeee98b241834f338713dc1b28bf5ad /tests/test_api.py | |
parent | 53f600ed717f7a1fa7a7c2d4115776300e1cf7cb (diff) | |
download | python-coveragepy-git-9a3c3e8b65070b31daf31cc149f28241cead89bf.tar.gz |
A better name for this test
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index 92d3cbc9..61cd9408 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -476,8 +476,8 @@ class AnalysisTest(CoverageTest): self.assertEqual(nums.n_missing_branches, 2) -class PluginTest(CoverageTest): - """Test that the API works properly the way the plugins call it. +class TestRunnerPluginTest(CoverageTest): + """Test that the API works properly the way various third-party plugins call it. We don't actually use the plugins, but these tests call the API the same way they do. |