summaryrefslogtreecommitdiff
path: root/tests/test_utils
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_utils')
-rw-r--r--tests/test_utils/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py
index 59f8ddd26b..4e90d720ee 100644
--- a/tests/test_utils/tests.py
+++ b/tests/test_utils/tests.py
@@ -806,10 +806,10 @@ class HTMLEqualTests(SimpleTestCase):
self.assertContains(response, '<p "whats" that>')
def test_unicode_handling(self):
- response = HttpResponse('<p class="help">Some help text for the title (with unicode ŠĐĆŽćžšđ)</p>')
+ response = HttpResponse('<p class="help">Some help text for the title (with Unicode ŠĐĆŽćžšđ)</p>')
self.assertContains(
response,
- '<p class="help">Some help text for the title (with unicode ŠĐĆŽćžšđ)</p>',
+ '<p class="help">Some help text for the title (with Unicode ŠĐĆŽćžšđ)</p>',
html=True
)