Skip to content

Commit 237ccbd

Browse files
committed
more test
1 parent ea42704 commit 237ccbd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 8.0.2
44

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

77
## 8.0.1
88

test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def test_phonetic_conversion_of_eastern_scripts(self):
3636
self.assertEqual(r, "ying-shi-ma")
3737

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

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

0 commit comments

Comments
 (0)