diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-06 16:22:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-06 16:22:55 (GMT) |
commit | fe373a542559cf6f3a8e78322efeaa0a5bc94beb (patch) | |
tree | 043f75fdc76be5b392b89bcf341a2d563b0427e0 /Lib/unittest | |
parent | 24d3b7f9df574b3e3859f20825f2b96730380fc9 (diff) | |
parent | 4b5367c46d8566f018b2b22a76b00063d13d3522 (diff) | |
download | cpython-fe373a542559cf6f3a8e78322efeaa0a5bc94beb.zip cpython-fe373a542559cf6f3a8e78322efeaa0a5bc94beb.tar.gz cpython-fe373a542559cf6f3a8e78322efeaa0a5bc94beb.tar.bz2 |
Fixed English in error message.
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/case.py | 2 |
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): |