From: Serhiy Storchaka Date: Wed, 6 May 2015 16:21:00 +0000 (+0300) Subject: Fixed English in error message. X-Git-Tag: v2.7.10rc1~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e2dcf6eaccc3ea840148d44019d8d482479bcfb;p=thirdparty%2FPython%2Fcpython.git Fixed English in error message. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index cef05678f68e..6bbc55fbc6ed 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.