summaryrefslogtreecommitdiff
path: root/tests/test_utils
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-04-18 07:46:05 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-20 12:10:33 +0200
commit505fec6badba0622bbf97bb659188c3d62a9bc58 (patch)
treeca5c256eb32d7f9906c59652049a45690458b52b /tests/test_utils
parent3152146e3abd029be2457d2e780599d399db0fe2 (diff)
Capitalized Unicode in docs, strings, and comments.
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
)