diff --git a/src/common.c b/src/common.c index 63c2955..4ee16f7 100644 --- a/src/common.c +++ b/src/common.c @@ -24,7 +24,7 @@ #include #ifdef UNIT_TESTING -#include "testing.h" +#include "../test/testing.h" #endif static const char * diff --git a/src/config.c b/src/config.c index ac80d20..185fb0d 100644 --- a/src/config.c +++ b/src/config.c @@ -32,7 +32,7 @@ #include #ifdef UNIT_TESTING -#include "testing.h" +#include "../test/testing.h" #endif const int subsystem_len = 257; diff --git a/src/flog.c b/src/flog.c index bee5914..03ede11 100644 --- a/src/flog.c +++ b/src/flog.c @@ -29,7 +29,7 @@ #include "config.h" #ifdef UNIT_TESTING -#include "testing.h" +#include "../test/testing.h" #endif #define OS_LOG_FORMAT_PUBLIC "%{public}s" diff --git a/src/testing.h b/test/testing.h similarity index 100% rename from src/testing.h rename to test/testing.h