From d7964ecc16d87a705c1f43e4461241ffbe035d03 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sun, 12 Nov 2023 18:36:52 +0100 Subject: [PATCH] Fixed tests --- src/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test.c b/src/test.c index ab04ee6..f5badfd 100644 --- a/src/test.c +++ b/src/test.c @@ -116,7 +116,7 @@ void test_preproc(void) { "#macro test\ntest macro with no args\n#endmacro\ntest"); assert_preproc("", -1, "#macro test\n not terminated\n"); assert_preproc( - "nested macro t1\nafter\ncontent n1\n\n", 0, + "nested macro t1\nafter\ncontent n1\n", 0, "#macro test\nnested macro $1\n#macro " "nested\ncontent $1\n#endmacro\nafter\nnested n1\n#endmacro\ntest t1"); -- 2.30.2