summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-06 16:21:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-06 16:21:00 (GMT)
commit4b5367c46d8566f018b2b22a76b00063d13d3522 (patch)
tree7761c657fd15542e1fbdcde030c44afdbbe35941
parente130503c7bc87023d20a353e2ab5081983a40917 (diff)
downloadcpython-4b5367c46d8566f018b2b22a76b00063d13d3522.zip
cpython-4b5367c46d8566f018b2b22a76b00063d13d3522.tar.gz
cpython-4b5367c46d8566f018b2b22a76b00063d13d3522.tar.bz2
Fixed English in error message.
-rw-r--r--Lib/unittest/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index f99c4e5..225a143 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):