diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-06 16:21:00 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-06 16:21:00 (GMT) |
| commit | 2e2dcf6eaccc3ea840148d44019d8d482479bcfb (patch) | |
| tree | c3a1b2e8fd262def4926cf18cf3f8fac43832c30 /Lib | |
| parent | 7f71e04cb510c24be337a22350324dc8a28e9775 (diff) | |
| download | cpython-2e2dcf6eaccc3ea840148d44019d8d482479bcfb.zip cpython-2e2dcf6eaccc3ea840148d44019d8d482479bcfb.tar.gz cpython-2e2dcf6eaccc3ea840148d44019d8d482479bcfb.tar.bz2 | |
Fixed English in error message.
Diffstat (limited to 'Lib')
| -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 cef0567..6bbc55f 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -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. |
