diff options
author | sanine <sanine.not@pm.me> | 2022-09-16 00:55:35 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-09-16 00:55:35 -0500 |
commit | f2eb020c4199134e07632f3c6690d68381837b85 (patch) | |
tree | d1bd4ae78f405b79f75d5af3ddf4b38b3b6a2b4b /src/test/honey-test.h | |
parent | 8abd7a81c988b26c19406c1ea669e050d56d2db5 (diff) |
fix bug in float assertions
Diffstat (limited to 'src/test/honey-test.h')
-rw-r--r-- | src/test/honey-test.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/honey-test.h b/src/test/honey-test.h index 03218a4..a864881 100644 --- a/src/test/honey-test.h +++ b/src/test/honey-test.h @@ -32,11 +32,13 @@ void suite_logging(); void suite_gl(); void suite_window(); void suite_util(); +void suite_import(); #define RUN_TESTS() \ lily_run_suite(suite_logging); \ lily_run_suite(suite_gl); \ lily_run_suite(suite_window); \ lily_run_suite(suite_util); \ + lily_run_suite(suite_import); \ #endif |