Skip to content

Commit

Permalink
switch back to unicode escapes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Jul 2, 2017
1 parent c8b37d4 commit 896aed2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_lexnparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ def test_trailing_newline(self, env):
(u'_', True, True),
(u'1a', False, False),
# special cases in addition to \w
(u'ᢅ', False, True), # 1885
(u'ᢆ', False, True), # 1886
(u'℘', False, True), # 2118
(u'℮', False, True), # 212e
('\u1885', False, True),
('\u1886', False, True),
('\u2118', False, True),
('\u212e', False, True),
))
def test_name(self, env, name, valid2, valid3):
t = u'{{ ' + name + u' }}'
Expand Down

0 comments on commit 896aed2

Please sign in to comment.