1
0
mirror of https://github.com/django/django.git synced 2025-01-08 17:37:20 +00:00

Completed test coverage for utils.text._replace_entity().

This commit is contained in:
Hasan Ramezani 2019-01-24 01:33:21 +01:00 committed by Tim Graham
parent 0ef9979669
commit 7e978fdc42

View File

@ -189,7 +189,9 @@ class TestUtilsText(SimpleTestCase):
('', ''),
('foo', 'foo'),
('&', '&'),
('&am;', '&am;'),
('&', '&'),
('&#xk;', '&#xk;'),
('&', '&'),
('foo & bar', 'foo & bar'),
('foo & bar', 'foo & bar'),