diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-08-30 15:18:58 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-08-30 15:18:58 -0700 |
| commit | 8b6cb9d0ddc21e68a1c63b25ceb685151ef21e6f (patch) | |
| tree | 11e32e256890ef6f2f47aa7f662fc3618a4b0d47 | |
| parent | 502142179996e32e1c7f334c3d986f21115cfac8 (diff) | |
Added a missing word in a skip message
| -rw-r--r-- | tests/i18n/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py index b7d82da12b..d9d4ecd176 100644 --- a/tests/i18n/tests.py +++ b/tests/i18n/tests.py @@ -193,7 +193,7 @@ class TranslationTests(TestCase): with six.assertRaisesRegex(self, KeyError, 'Your dictionary lacks key.*'): complex_context_deferred % {'name': 'Jim'} - @skipUnless(six.PY2, "PY3 doesn't distinct int and long types") + @skipUnless(six.PY2, "PY3 doesn't have distinct int and long types") def test_ungettext_lazy_long(self): """ Regression test for #22820: int and long should be treated alike in ungettext_lazy. |
