]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed English in error message.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 6 May 2015 16:21:00 +0000 (19:21 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 6 May 2015 16:21:00 +0000 (19:21 +0300)
Lib/unittest/case.py

index cef05678f68e9aabe753ca052133bc9555b4854b..6bbc55fbc6edacceb694220bc6b6aaa66cc48b71 100644 (file)
@@ -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.