diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-08-30 15:18:58 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-08-30 21:37:15 -0400 |
| commit | f4da04a771a67e15c0f529c429c44ab9388fe6be (patch) | |
| tree | 8c7a884bb25539e8fb6583871b811d07d93d42ae | |
| parent | d839c756645b5091d55f67bbc4ff10718ff61a6b (diff) | |
[1.7.x] Added a missing word in a skip message
Backport of 8b6cb9d0dd from master
| -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 35391506e5..e4bae85bce 100644 --- a/tests/i18n/tests.py +++ b/tests/i18n/tests.py @@ -154,7 +154,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. |
