diff options
| author | Fabio Caccamo <fabio.caccamo@gmail.com> | 2016-01-15 15:32:07 +0100 |
|---|---|---|
| committer | Fabio Caccamo <fabio.caccamo@gmail.com> | 2016-01-15 15:32:07 +0100 |
| commit | 76f0678e9b28ae54a9a29b95d9fedb74bc8855cd (patch) | |
| tree | 5db80cd575b53044c5f15d08c06ee9696ac2fc49 | |
| parent | 0c9b8e069994f6ab76b4f4f5efd2d85cf795bdd8 (diff) | |
| download | python-slugify-76f0678e9b28ae54a9a29b95d9fedb74bc8855cd.tar.gz | |
Updated tests
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ class TestSlugification(unittest.TestCase): def test_accented_text(self): txt = 'C\'est déjà l\'été.' r = slugify(txt) - self.assertEqual(r, "cest-deja-lete") + self.assertEqual(r, "c-est-deja-l-ete") txt = 'Nín hǎo. Wǒ shì zhōng guó rén' r = slugify(txt) |
