diff options
author | Souheil CHELFOUH <trollfot@gmail.com> | 2018-10-18 12:43:55 +0200 |
---|---|---|
committer | Souheil CHELFOUH <trollfot@gmail.com> | 2018-10-18 12:43:55 +0200 |
commit | 1d3ce923dd480f3667f52ca691efa1f7ef007c5b (patch) | |
tree | c1449581846606a86195d62b174cdcb7687857e2 /src/zope | |
parent | 818f7829b6885246bcda9c89c0f46e68f5835d13 (diff) | |
download | zope-i18n-1d3ce923dd480f3667f52ca691efa1f7ef007c5b.tar.gz |
Fixing unicode problem in py2.7
Diffstat (limited to 'src/zope')
-rw-r--r-- | src/zope/i18n/tests/test_plurals.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/zope/i18n/tests/test_plurals.py b/src/zope/i18n/tests/test_plurals.py index 596ff7f..6c408db 100644 --- a/src/zope/i18n/tests/test_plurals.py +++ b/src/zope/i18n/tests/test_plurals.py @@ -78,27 +78,27 @@ class TestPlurals(unittest.TestCase): self.assertEqual(catalog.getPluralMessage( 'There is one file.', 'There are %d files.', 0), - "Istnieją 0 plików.") + u"Istnieją 0 plików.") self.assertEqual(catalog.getPluralMessage( 'There is one file.', 'There are %d files.', 1), - "Istnieje 1 plik.") + u"Istnieje 1 plik.") self.assertEqual(catalog.getPluralMessage( 'There is one file.', 'There are %d files.', 3), - "Istnieją 3 pliki.") + u"Istnieją 3 pliki.") self.assertEqual(catalog.getPluralMessage( 'There is one file.', 'There are %d files.', 17), - "Istnieją 17 plików.") + u"Istnieją 17 plików.") self.assertEqual(catalog.getPluralMessage( 'There is one file.', 'There are %d files.', 23), - "Istnieją 23 pliki.") + u"Istnieją 23 pliki.") self.assertEqual(catalog.getPluralMessage( 'There is one file.', 'There are %d files.', 28), - "Istnieją 28 plików.") + u"Istnieją 28 plików.") def test_floater(self): """Test with the number being a float. |