[Python-checkins] cpython (3.4): Fixed English in error message.

serhiy.storchaka python-checkins at python.org
Wed May 6 18:23:40 CEST 2015


https://hg.python.org/cpython/rev/66f698d08576
changeset:   95901:66f698d08576
branch:      3.4
parent:      95898:5418ab3e5556
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed May 06 19:21:00 2015 +0300
summary:
  Fixed English in error message.

files:
  Lib/unittest/case.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -130,7 +130,7 @@
         raise self.test_case.failureException(msg)
 
 def _sentinel(*args, **kwargs):
-    raise AssertionError('Should never called')
+    raise AssertionError('Should never be called')
 
 class _AssertRaisesBaseContext(_BaseTestCaseContext):
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list