summaryrefslogtreecommitdiff
path: root/src/test/honey-test.h
diff options
context:
space:
mode:
authorsanine <sanine.net@pm.me>2022-06-14 11:38:11 -0500
committersanine <sanine.net@pm.me>2022-06-14 11:38:11 -0500
commit5a95cd1858be9ed3ad38d306ba93beb2b1e9864c (patch)
treef2144ed7457f7f92d51a66665b2fb62401c00697 /src/test/honey-test.h
parentbee5a57f2f654597eb6d42785b139f67c8c3cba3 (diff)
fix RUN_TESTS macro
Diffstat (limited to 'src/test/honey-test.h')
-rw-r--r--src/test/honey-test.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/honey-test.h b/src/test/honey-test.h
index 4aa1827..65bd959 100644
--- a/src/test/honey-test.h
+++ b/src/test/honey-test.h
@@ -1,9 +1,11 @@
#ifndef HONEY_TEST_H
#define HONEY_TEST_H
+#include "lily-test.h"
+
void suite_logging();
#define RUN_TESTS() \
- suite_logging();
+ lily_run_suite(suite_logging);
#endif