Skip to content

Commit

Permalink
Fix test_unicode_matching test
Browse files Browse the repository at this point in the history
  • Loading branch information
axelstudios committed Feb 16, 2024
1 parent c290530 commit 9495faa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion seed/data_importer/tests/test_match_unicode.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class TestUnicodeNormalization(DataMappingBaseTestCase):
def test_unicode_normalization(self):
"""Test a few cases. The unicodedata.normalize('NFC', text) method combines the
the letter and diacritics, which seems to provide the best compatibility."""
letter and diacritics, which seems to provide the best compatibility."""
# Guillemets
unicode_text = "Café «Déjà Vu»"
expected_out = "Café \"Déjà Vu\""
Expand Down Expand Up @@ -137,6 +137,7 @@ def test_unicode_matching(self):
'import_file_id': self.import_file_1.id,
'data_state': DATA_STATE_MAPPING,
'no_default_data': False,
'raw_access_level_instance_id': self.org.root.id,
}
self.property_state_factory.get_property_state(**base_state_details)

Expand Down

0 comments on commit 9495faa

Please sign in to comment.