Skip to content

Commit 43b6b89

Browse files
committed
fix test
1 parent 2ae9c15 commit 43b6b89

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

test/test_lexer.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,12 @@ def test_dict_expression(self):
10491049
CallNamespaceTag(
10501050
"self:dtest",
10511051
{
1052-
"d": "${\n {\n 'id':'4',\n 'foo':'barr'\n }\n }"
1052+
"d": "${\n\
1053+
{\n\
1054+
'id':'4',\n\
1055+
'foo':'barr'\n\
1056+
}\n\
1057+
}"
10531058
},
10541059
(7, 9),
10551060
[],
@@ -1182,7 +1187,11 @@ def test_dict_expression_2(self):
11821187
CallNamespaceTag(
11831188
"self:dtest",
11841189
{
1185-
"d": "${ {\n 'x-on:click':'foo',\n 'foo':'bar',\n 'embeded':{'name':'J Doe'}\n } }"
1190+
"d": "${ {\n\
1191+
'x-on:click':'foo',\n\
1192+
'foo':'bar',\n\
1193+
'embeded':{'name':'J Doe'}\n\
1194+
} }"
11861195
},
11871196
(25, 9),
11881197
[],

0 commit comments

Comments
 (0)