Capitalized Unicode in docs, strings, and comments.

This commit is contained in:
Jon Dufresne 2020-04-18 07:46:05 -07:00 committed by Mariusz Felisiak
parent 3152146e3a
commit 505fec6bad
33 changed files with 41 additions and 41 deletions

View file

@ -36,7 +36,7 @@ class AutoescapeTagTests(SimpleTestCase):
output = self.engine.render_to_string('autoescape-tag05', {'first': '<b>first</b>'})
self.assertEqual(output, '&lt;b&gt;first&lt;/b&gt;')
# Strings (ASCII or unicode) already marked as "safe" are not
# Strings (ASCII or Unicode) already marked as "safe" are not
# auto-escaped
@setup({'autoescape-tag06': '{{ first }}'})
def test_autoescape_tag06(self):