From bc5b29f8791a605db353fc53acb8404693f41cbd Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 26 Jul 2019 21:33:46 +0200 Subject: [PATCH] Fixed includes in tests. --- tests/test_adoc.cpp | 2 +- tests/test_bookmarks.cpp | 2 +- tests/test_csv.cpp | 2 +- tests/test_simple.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_adoc.cpp b/tests/test_adoc.cpp index 586f0cc..88511e5 100644 --- a/tests/test_adoc.cpp +++ b/tests/test_adoc.cpp @@ -22,7 +22,7 @@ #include #include "time.hpp" #include "sqlite.hpp" -#include "adoc.hpp" +#include "export/adoc.hpp" using std::string; using std::chrono::system_clock; diff --git a/tests/test_bookmarks.cpp b/tests/test_bookmarks.cpp index b63c170..1f7ac19 100644 --- a/tests/test_bookmarks.cpp +++ b/tests/test_bookmarks.cpp @@ -21,7 +21,7 @@ #include #include #include "sqlite.hpp" -#include "bookmarks.hpp" +#include "export/bookmarks.hpp" using std::string; using std::chrono::system_clock; diff --git a/tests/test_csv.cpp b/tests/test_csv.cpp index 499bdc1..b072871 100644 --- a/tests/test_csv.cpp +++ b/tests/test_csv.cpp @@ -22,7 +22,7 @@ #include #include "time.hpp" #include "sqlite.hpp" -#include "csv.hpp" +#include "export/csv.hpp" using std::string; using std::chrono::system_clock; diff --git a/tests/test_simple.cpp b/tests/test_simple.cpp index 52b7ef8..8cd794d 100644 --- a/tests/test_simple.cpp +++ b/tests/test_simple.cpp @@ -21,7 +21,7 @@ #include #include #include "sqlite.hpp" -#include "simple.hpp" +#include "export/simple.hpp" using std::string; using std::chrono::system_clock;