From bd818ccf195d78b3a586449cf24c4f825b10ca8e Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 16 Oct 2023 12:25:21 -0500 Subject: add additional linebreak after failure message --- lily-test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily-test.h b/lily-test.h index 3ab4507..265c653 100644 --- a/lily-test.h +++ b/lily-test.h @@ -282,7 +282,7 @@ void lily_run_test(void (*test)()) if (lily_g.failed) { lily_g.n_tests_failed += 1; printf("================================================================================\n"); - printf("test \"%s\" failed!\n", lily_g.test_name); + printf("test \"%s\" failed!\n\n", lily_g.test_name); lily_test_msg_t *n = lily_g.HEAD.next; while(n != NULL) { printf(" %s\n [%s]\n\n", n->msg, n->location); -- cgit v1.2.1