Skip to content

Commit

Permalink
more test
Browse files Browse the repository at this point in the history
  • Loading branch information
un33k committed Jan 25, 2024
1 parent ea42704 commit 237ccbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 237ccbd

Please sign in to comment.