Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
more test
  • Loading branch information
un33k committed Jan 25, 2024
commit 237ccbd93244a0d435bfdb56f94ae4008a7b85b9
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 8.0.2

- Normalize text before converting to unicode. (chuckyblack - thx)
- Normalize text before converting to unicode. (@chuckyblack - thx)

## 8.0.1

Expand Down
4 changes: 2 additions & 2 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def test_phonetic_conversion_of_eastern_scripts(self):
self.assertEqual(r, "ying-shi-ma")

def test_accented_text(self):
txt = '𝐚́́𝕒́àéé'
txt = '𝐚́́𝕒́àáâäãąā'
r = slugify(txt)
self.assertEqual(r, "aaaee")
self.assertEqual(r, "aaaaaaaaa")

txt = 'C\'est déjà l\'été.'
r = slugify(txt)
Expand Down