Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cocolato committed Oct 29, 2024
1 parent 2ae9c15 commit 43b6b89
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions test/test_lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,12 @@ def test_dict_expression(self):
CallNamespaceTag(
"self:dtest",
{
"d": "${\n {\n 'id':'4',\n 'foo':'barr'\n }\n }"
"d": "${\n\
{\n\
'id':'4',\n\
'foo':'barr'\n\
}\n\
}"
},
(7, 9),
[],
Expand Down Expand Up @@ -1182,7 +1187,11 @@ def test_dict_expression_2(self):
CallNamespaceTag(
"self:dtest",
{
"d": "${ {\n 'x-on:click':'foo',\n 'foo':'bar',\n 'embeded':{'name':'J Doe'}\n } }"
"d": "${ {\n\
'x-on:click':'foo',\n\
'foo':'bar',\n\
'embeded':{'name':'J Doe'}\n\
} }"
},
(25, 9),
[],
Expand Down

0 comments on commit 43b6b89

Please sign in to comment.