From 9ea4368ff1e4842286e0e7a6aec58a2c2c799d5b Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 10 Sep 2020 18:37:24 +0200 Subject: treewide: implement default lstrip_blocks and trim_blocks behaviour Signed-off-by: Jo-Philipp Wich --- tests/00_syntax/15_function_declarations | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'tests/00_syntax/15_function_declarations') diff --git a/tests/00_syntax/15_function_declarations b/tests/00_syntax/15_function_declarations index 846f379..cb391a4 100644 --- a/tests/00_syntax/15_function_declarations +++ b/tests/00_syntax/15_function_declarations @@ -17,9 +17,9 @@ function() { ... } function test_fn(a, b) { ... } function test2_fn(a, b) { ... } - A function declaration using the alternative syntax: The function was called with arguments 123 and 456. + -- End -- -- Testcase -- @@ -50,10 +50,8 @@ The function was called with arguments 123 and 456. %} A function declaration using the alternative syntax: - -{%- function test3_fn(a, b): %} +{% function test3_fn(a, b): %} The function was called with arguments {{ a }} and {{ b }}. -{%- endfunction -%} - +{% endfunction %} {{ test3_fn(123, 456) }} -- End -- -- cgit v1.2.3