summaryrefslogtreecommitdiff
path: root/lily-test.h
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-05-11 12:11:08 -0500
committersanine <sanine.not@pm.me>2022-05-11 12:11:08 -0500
commit7d9364384a5c763c9c6ca4fad3b27536df2091b2 (patch)
treedeab63c92cb78c004091a1561b30e53657f60af1 /lily-test.h
parent703576b11ceaad617b05b0b60a300a6281b25a43 (diff)
fix setjmp bug in lily_run_test()
Diffstat (limited to 'lily-test.h')
-rw-r--r--lily-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lily-test.h b/lily-test.h
index 68d08e9..90fc2c8 100644
--- a/lily-test.h
+++ b/lily-test.h
@@ -76,7 +76,7 @@ typedef void (*lily_test_t)(void);
void _lily_run_test(const char *name, lily_test_t test);
/** run a suite */
-#define lily_run_suite(suite) _lily_run_suite(#suite, suite);
+#define lily_run_suite(suite) _lily_run_suite(#suite, suite)
void _lily_run_suite(const char *name, lily_test_t suite);