summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-09-21 13:05:39 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-09-21 13:05:39 -0400
commit80cef07dad4b54c1c41521d1dd580a622e784a30 (patch)
treedcdb5347452c9937d5eecda6cb9c5c434985ff71
parenta4c441bd2a112d9f5832e212040d7ed533837f9c (diff)
downloadpython-coveragepy-80cef07dad4b54c1c41521d1dd580a622e784a30.tar.gz
Some people running tests have a foo.py in their path...
-rw-r--r--tests/test_plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py
index d60ce77..9c5a037 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):