]> 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 f99c4e5312a5c905d8f9501ac3c18a68b00b0897..225a1431ca859366a402df8aa6798a6fe9419c78 100644 (file)
@@ -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):