diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-08 21:34:37 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-08 21:34:37 +0200 |
commit | 0a112c3f0964e4be0bab7148538656173768c3b7 (patch) | |
tree | 66ab90aaf5b6b4bf19c03f7fbf0ceca25102983b /source/tests/lower_bound.test.c | |
parent | 24be37e59ba144a507bb53f07ca2673e0ed444b4 (diff) | |
download | kit-0a112c3f0964e4be0bab7148538656173768c3b7.zip |
Refactor kit_test to header-only library
Diffstat (limited to 'source/tests/lower_bound.test.c')
-rw-r--r-- | source/tests/lower_bound.test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tests/lower_bound.test.c b/source/tests/lower_bound.test.c index 56ec816..ea6e72d 100644 --- a/source/tests/lower_bound.test.c +++ b/source/tests/lower_bound.test.c @@ -2,7 +2,7 @@ #include "../kit/array_ref.h" #define KIT_TEST_FILE lower_bound -#include "../kit_test/test.h" +#include "../kit/kit_test.h" static int kit_less_int(int left, int right) { return left < right; |