From: Lukas Krickl Date: Sun, 12 Nov 2023 17:36:52 +0000 (+0100) Subject: Fixed tests X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=d7964ecc16d87a705c1f43e4461241ffbe035d03;p=ulas%2F.git Fixed tests --- 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");