diff options
author | sanine <sanine.not@pm.me> | 2023-10-16 12:25:21 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-10-16 12:25:21 -0500 |
commit | bd818ccf195d78b3a586449cf24c4f825b10ca8e (patch) | |
tree | 1dcfd77f21937d9e8c3674c45c917f104cddb5cc | |
parent | 74de130540b6c139312ce1ed70a59c6bdd4d10dc (diff) |
add additional linebreak after failure message
-rw-r--r-- | lily-test.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |