From 43b6b89b20d7d16b06cc2e1773fdc7d6289b2aaf Mon Sep 17 00:00:00 2001 From: cocolato Date: Tue, 29 Oct 2024 22:15:31 +0800 Subject: [PATCH] fix test --- test/test_lexer.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/test/test_lexer.py b/test/test_lexer.py index 9aaafe9..a16321b 100644 --- a/test/test_lexer.py +++ b/test/test_lexer.py @@ -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), [], @@ -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), [],