Improved TokenType.COMMENT test by using correct block syntax in template tests.

This commit is contained in:
Lily Foote 2024-09-16 15:30:30 +02:00 committed by GitHub
parent fd92f24789
commit d50f61be7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ class LexerTestMixin:
template_string = (
"text\n"
"{% if test %}{{ varvalue }}{% endif %}"
"{#comment {{not a var}} %{not a block}% #}"
"{#comment {{not a var}} {%not a block%} #}"
"end text"
)
expected_token_tuples = [
@ -17,7 +17,7 @@ class LexerTestMixin:
(TokenType.BLOCK, "if test", 2, (5, 18)),
(TokenType.VAR, "varvalue", 2, (18, 32)),
(TokenType.BLOCK, "endif", 2, (32, 43)),
(TokenType.COMMENT, "comment {{not a var}} %{not a block}%", 2, (43, 85)),
(TokenType.COMMENT, "comment {{not a var}} {%not a block%}", 2, (43, 85)),
(TokenType.TEXT, "end text", 2, (85, 93)),
]