From 183d87328d87b65ac2687b4ee52b6b7e5f965e67 Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Fri, 27 Jul 2018 15:43:58 -0400 Subject: [PATCH] Fix failing tests due to typo in error message Commit 62699a3187 of coverage.py changed the error message string. https://github.com/nedbat/coveragepy/commit/62699a318754c6811622d31cfab195b4dbc3775e --- tests/plugin_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/plugin_test.py b/tests/plugin_test.py index 278c849..8139ee7 100644 --- a/tests/plugin_test.py +++ b/tests/plugin_test.py @@ -228,7 +228,7 @@ def assert_plugin_disabled(self, msg): stderr = self.stderr() self.assertIn( "Coverage.py warning: " - "Disabling plugin 'django_coverage_plugin.DjangoTemplatePlugin' " + "Disabling plug-in 'django_coverage_plugin.DjangoTemplatePlugin' " "due to an exception:", stderr )