diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-21 01:20:29 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:14 +0100 |
commit | 1abe42857baf0348ba60e83a4c42361e00c3be71 (patch) | |
tree | 3f62cdf12951053a4b98366a550c35f81f1e9544 /test/unit/containers.cc | |
parent | b37e243a1e96bb99b42eff9295b448f0241a89b8 (diff) |
Fix include paths for tests
They are now relative to the root directory of the project, instead of
relative to the test file location.
Diffstat (limited to 'test/unit/containers.cc')
-rw-r--r-- | test/unit/containers.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/containers.cc b/test/unit/containers.cc index af317d7e..52a20bf1 100644 --- a/test/unit/containers.cc +++ b/test/unit/containers.cc @@ -1,5 +1,5 @@ -#include "../lout/object.hh" -#include "../lout/container.hh" +#include "lout/object.hh" +#include "lout/container.hh" using namespace lout::object; using namespace lout::container::typed; |