summaryrefslogtreecommitdiffstats
path: root/tests/tests.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-18 14:51:42 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-19 13:02:28 -0400
commit1501910dd0d09c50057c8358901663a87333bd8f (patch)
treeb9abef01068fbda32a4e9473f8a5c73e3ec58f09 /tests/tests.h
parentaa0843ae50b09bad3ece21bd310b849d034efac2 (diff)
downloadbfs-1501910dd0d09c50057c8358901663a87333bd8f.tar.xz
tests: Add ../src to the include path
Diffstat (limited to 'tests/tests.h')
-rw-r--r--tests/tests.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tests.h b/tests/tests.h
index 351badb..d61ffd7 100644
--- a/tests/tests.h
+++ b/tests/tests.h
@@ -8,8 +8,8 @@
#ifndef BFS_TESTS_H
#define BFS_TESTS_H
-#include "../src/config.h"
-#include "../src/diag.h"
+#include "config.h"
+#include "diag.h"
/** Unit test function type. */
typedef bool test_fn(void);