summaryrefslogtreecommitdiff
path: root/tests
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
commiteb307693feb754f483e10e34a10d4540d1f01627 (patch)
tree146ae5ce0f77f8e7b7d8ebdb10a3a4ba6de6a2e0 /tests
parent134b27ee390d5bb5c524e2fd6a1902eb2002ae2a (diff)
downloadpython-coveragepy-git-eb307693feb754f483e10e34a10d4540d1f01627.tar.gz
Some people running tests have a foo.py in their path...
Diffstat (limited to 'tests')
-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 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):