diff options
| author | Sjbrgsn <chsnot@gmail.com> | 2019-12-21 11:45:54 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-30 20:47:22 +0100 |
| commit | b2bd08bb7a912a1504f5fb5018f5317e6b5423cd (patch) | |
| tree | c481e9b848b285755f872554ed0b828e5256aee9 /tests/utils_tests/test_text.py | |
| parent | cf5d4701dc12ad69d51042b0d7e81e4a54de4bd7 (diff) | |
Fixed #30892 -- Fixed slugify() and admin's URLify.js for "İ".
Thanks Luis Nell for the implementation idea and very detailed report.
Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'tests/utils_tests/test_text.py')
| -rw-r--r-- | tests/utils_tests/test_text.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils_tests/test_text.py b/tests/utils_tests/test_text.py index b904c228b9..66dbd5b366 100644 --- a/tests/utils_tests/test_text.py +++ b/tests/utils_tests/test_text.py @@ -196,6 +196,7 @@ class TestUtilsText(SimpleTestCase): ('foo ıç bar', 'foo-ıç-bar', True), (' foo ıç bar', 'foo-ıç-bar', True), ('你好', '你好', True), + ('İstanbul', 'istanbul', True), ) for value, output, is_unicode in items: self.assertEqual(text.slugify(value, allow_unicode=is_unicode), output) |
