From: Serhiy Storchaka Date: Wed, 6 May 2015 16:21:00 +0000 (+0300) Subject: Fixed English in error message. X-Git-Tag: v3.5.0b1~232^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b5367c46d8566f018b2b22a76b00063d13d3522;p=thirdparty%2FPython%2Fcpython.git Fixed English in error message. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index f99c4e5312a5..225a1431ca85 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -130,7 +130,7 @@ class _BaseTestCaseContext: raise self.test_case.failureException(msg) def _sentinel(*args, **kwargs): - raise AssertionError('Should never called') + raise AssertionError('Should never be called') class _AssertRaisesBaseContext(_BaseTestCaseContext):