diff --git a/django_classified/tests/test_urls.py b/django_classified/tests/test_urls.py index 73c86fc..115bca1 100644 --- a/django_classified/tests/test_urls.py +++ b/django_classified/tests/test_urls.py @@ -244,12 +244,12 @@ def test_group_slug_autocreated(self): ) self.assertEqual(new_group.slug, 'some-cool-staff') - + # Test with non-Latin characters arabic_group = Group.objects.create( title='بيت للأجار', section=section ) - + # The slug should preserve the Arabic characters self.assertEqual(arabic_group.slug, 'بيت-للأجار')