summaryrefslogtreecommitdiff
path: root/tests/messages/test_catalog.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/messages/test_catalog.py')
-rw-r--r--tests/messages/test_catalog.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/messages/test_catalog.py b/tests/messages/test_catalog.py
index 2d36809..830cabf 100644
--- a/tests/messages/test_catalog.py
+++ b/tests/messages/test_catalog.py
@@ -386,7 +386,7 @@ def test_catalog_mime_headers_set_locale():
('Last-Translator', 'John Doe <jd@example.com>'),
('Language', 'de_DE'),
('Language-Team', 'de_DE <de@example.com>'),
- ('Plural-Forms', 'nplurals=2; plural=(n != 1)'),
+ ('Plural-Forms', 'nplurals=2; plural=(n != 1);'),
('MIME-Version', '1.0'),
('Content-Type', 'text/plain; charset=utf-8'),
('Content-Transfer-Encoding', '8bit'),
@@ -407,9 +407,9 @@ def test_catalog_plural_expr():
def test_catalog_plural_forms():
assert (catalog.Catalog(locale='en').plural_forms
- == 'nplurals=2; plural=(n != 1)')
+ == 'nplurals=2; plural=(n != 1);')
assert (catalog.Catalog(locale='pt_BR').plural_forms
- == 'nplurals=2; plural=(n > 1)')
+ == 'nplurals=2; plural=(n > 1);')
def test_catalog_setitem():