diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-21 13:05:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-21 13:05:39 -0400 |
commit | eb307693feb754f483e10e34a10d4540d1f01627 (patch) | |
tree | 146ae5ce0f77f8e7b7d8ebdb10a3a4ba6de6a2e0 | |
parent | 134b27ee390d5bb5c524e2fd6a1902eb2002ae2a (diff) | |
download | python-coveragepy-git-eb307693feb754f483e10e34a10d4540d1f01627.tar.gz |
Some people running tests have a foo.py in their path...
-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 d60ce77b..9c5a037d 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -106,7 +106,7 @@ class PluginTest(CoverageTest): def test_missing_plugin_raises_import_error(self): # Prove that a missing plugin will raise an ImportError. with self.assertRaises(ImportError): - cov = coverage.Coverage(plugins=["foo"]) + cov = coverage.Coverage(plugins=["does_not_exist_woijwoicweo"]) cov.start() def test_bad_plugin_isnt_hidden(self): |