From 30b0423e0ab72b6ba63bdeb6bd7b0624cdc83475 Mon Sep 17 00:00:00 2001 From: flysand7 Date: Sun, 25 Jun 2023 04:43:38 +1100 Subject: [PATCH] Fix alignment on failure messages --- tests/crt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/crt.c b/tests/crt.c index d194b55..681acf8 100644 --- a/tests/crt.c +++ b/tests/crt.c @@ -387,7 +387,7 @@ static void junit_write(char *path, Test_Feature *features) { if(!test->is_succeeded) { fprint_fmt(xml, " \n", test->line, test->error_msg); - fprint_fmt(xml, " crt.c(%d):\n %s\n", test->line, test->error_msg); + fprint_fmt(xml, "crt.c(%d):\n %s\n", test->line, test->error_msg); fprint_fmt(xml, " \n"); } test_id += 1;