diff --git a/integration_tests/osrm_route_test.cpp b/integration_tests/osrm_route_test.cpp index 7e48ac9cdd..9dfbe4b488 100644 --- a/integration_tests/osrm_route_test.cpp +++ b/integration_tests/osrm_route_test.cpp @@ -1,6 +1,6 @@ -#include "../testing/testing.hpp" +#include "testing/testing.hpp" -#include "osrm_test_tools.hpp" +#include "integration_tests/osrm_test_tools.hpp" #include "../indexer/mercator.hpp" diff --git a/integration_tests/osrm_test_tools.cpp b/integration_tests/osrm_test_tools.cpp index a1b4656319..c18d1dce24 100644 --- a/integration_tests/osrm_test_tools.cpp +++ b/integration_tests/osrm_test_tools.cpp @@ -1,19 +1,19 @@ -#include "osrm_test_tools.hpp" +#include "integration_tests/osrm_test_tools.hpp" -#include "../testing/testing.hpp" +#include "testing/testing.hpp" -#include "../indexer/index.hpp" +#include "indexer/index.hpp" -#include "../geometry/distance_on_sphere.hpp" +#include "geometry/distance_on_sphere.hpp" -#include "../routing/route.hpp" +#include "routing/route.hpp" -#include "../map/feature_vec_model.hpp" +#include "map/feature_vec_model.hpp" -#include "../platform/platform.hpp" -#include "../platform/preferred_languages.hpp" +#include "platform/platform.hpp" +#include "platform/preferred_languages.hpp" -#include "../search/search_engine.hpp" +#include "search/search_engine.hpp" using namespace routing; diff --git a/integration_tests/osrm_test_tools.hpp b/integration_tests/osrm_test_tools.hpp index fd66a07eb5..7502dc06ca 100644 --- a/integration_tests/osrm_test_tools.hpp +++ b/integration_tests/osrm_test_tools.hpp @@ -1,11 +1,11 @@ #pragma once -#include "../std/shared_ptr.hpp" -#include "../std/string.hpp" -#include "../std/vector.hpp" -#include "../std/set.hpp" +#include "std/shared_ptr.hpp" +#include "std/string.hpp" +#include "std/vector.hpp" +#include "std/set.hpp" -#include "../routing/osrm_router.hpp" +#include "routing/osrm_router.hpp" /* * These tests are developed to simplify routing integration tests writing. diff --git a/integration_tests/osrm_turn_test.cpp b/integration_tests/osrm_turn_test.cpp index 68f0cc220f..2d691f63e9 100644 --- a/integration_tests/osrm_turn_test.cpp +++ b/integration_tests/osrm_turn_test.cpp @@ -1,8 +1,8 @@ -#include "../testing/testing.hpp" +#include "testing/testing.hpp" -#include "osrm_test_tools.hpp" +#include "integration_tests/osrm_test_tools.hpp" -#include "../routing/route.hpp" +#include "routing/route.hpp" using namespace routing;