summaryrefslogtreecommitdiff
path: root/tests/helpers.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2021-12-22 00:27:43 -0600
committersanine <sanine.not@pm.me>2021-12-22 00:27:43 -0600
commitedb8c6114a20b806c56dd0225dd39e333ffb3ac3 (patch)
tree00ac174b41c0979a9c482e0cf68879341d4b7de0 /tests/helpers.c
parent7634dd65ac55a0fe4e7ed69cee7e3957f574a03e (diff)
re-implement basic lily_assert_msg() macro
Diffstat (limited to 'tests/helpers.c')
-rw-r--r--tests/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers.c b/tests/helpers.c
index 42a0724..cdf72b4 100644
--- a/tests/helpers.c
+++ b/tests/helpers.c
@@ -8,7 +8,7 @@ void run_test(const char *name, const char* (*test)())
printf("%s... ", name);
const char *result = test();
if (result != 0) {
- printf("FAILED (%s)\n", result);
+ printf("FAILED: %s\n", result);
}
else
printf("OK\n");