From 2e2dcf6eaccc3ea840148d44019d8d482479bcfb Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 6 May 2015 19:21:00 +0300 Subject: [PATCH] Fixed English in error message. --- Lib/unittest/case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index cef05678f6..6bbc55fbc6 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -128,7 +128,7 @@ class _AssertRaisesContext(object): return True def _sentinel(*args, **kwargs): - raise AssertionError('Should never called') + raise AssertionError('Should never be called') class TestCase(object): """A class whose instances are single test cases. -- 2.50.1