diff options
author | sanine <sanine.not@pm.me> | 2022-12-22 18:22:50 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-12-22 18:22:50 -0600 |
commit | e48761f7ca1dba622b54b7f2223854645996fc30 (patch) | |
tree | f8cf0be1ba894bf6baed8dfaf8ee98b1ad5e8628 | |
parent | 423082adc4b8d0e8964ca73e79ed7d9ac8b391a3 (diff) |
change log newlines
-rw-r--r-- | lily-test.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lily-test.h b/lily-test.h index 1bc4e74..f0d14e7 100644 --- a/lily-test.h +++ b/lily-test.h @@ -223,11 +223,11 @@ void lily_run_test(void (*test)()) } if (lily_g.failed) { - printf("================================================================================\n\n"); - printf("test \"%s\" failed!\n\n", lily_g.test_name); + printf("================================================================================\n"); + printf("test \"%s\" failed!\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); + printf(" %s\n [%s]\n", n->msg, n->location); n = n->next; } lily_msg_destroy(lily_g.HEAD.next); |