From edb8c6114a20b806c56dd0225dd39e333ffb3ac3 Mon Sep 17 00:00:00 2001 From: sanine Date: Wed, 22 Dec 2021 00:27:43 -0600 Subject: re-implement basic lily_assert_msg() macro --- tests/helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/helpers.c') 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"); -- cgit v1.2.1