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.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/messages/test_catalog.py b/tests/messages/test_catalog.py
index 273c83f..c2e7aed 100644
--- a/tests/messages/test_catalog.py
+++ b/tests/messages/test_catalog.py
@@ -121,16 +121,16 @@ class CatalogTestCase(unittest.TestCase):
def test_update_fuzzy_matching_with_case_change(self):
cat = catalog.Catalog()
- cat.add('foo', 'Voh')
+ cat.add('FOO', 'Voh')
cat.add('bar', 'Bahr')
tmpl = catalog.Catalog()
- tmpl.add('Foo')
+ tmpl.add('foo')
cat.update(tmpl)
assert len(cat.obsolete) == 1
- assert 'foo' not in cat
+ assert 'FOO' not in cat
- assert cat['Foo'].string == 'Voh'
- assert cat['Foo'].fuzzy is True
+ assert cat['foo'].string == 'Voh'
+ assert cat['foo'].fuzzy is True
def test_update_fuzzy_matching_with_char_change(self):
cat = catalog.Catalog()