diff options
Diffstat (limited to 'tests/helpers.c')
-rw-r--r-- | tests/helpers.c | 2 |
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"); |