From eb307693feb754f483e10e34a10d4540d1f01627 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 21 Sep 2014 13:05:39 -0400 Subject: Some people running tests have a foo.py in their path... --- tests/test_plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.1