From 4025cbd555c07abaa20334ee4dd78b4b36ac7e51 Mon Sep 17 00:00:00 2001 From: "Daniel J. Hofmann" Date: Wed, 23 Mar 2016 16:46:05 +0100 Subject: [PATCH] Make extractor unit tests work again after global uturn changeset --- unit_tests/extractor/graph_compressor.cpp | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/unit_tests/extractor/graph_compressor.cpp b/unit_tests/extractor/graph_compressor.cpp index ee935a4bb..7a6da7aec 100644 --- a/unit_tests/extractor/graph_compressor.cpp +++ b/unit_tests/extractor/graph_compressor.cpp @@ -2,7 +2,6 @@ #include "extractor/compressed_edge_container.hpp" #include "extractor/restriction_map.hpp" #include "util/node_based_graph.hpp" -#include "extractor/speed_profile.hpp" #include "util/typedefs.hpp" #include @@ -22,8 +21,7 @@ BOOST_AUTO_TEST_CASE(long_road_test) // // 0---1---2---3---4 // - SpeedProfileProperties speed_profile; - GraphCompressor compressor(speed_profile); + GraphCompressor compressor; std::unordered_set barrier_nodes; std::unordered_set traffic_lights; @@ -62,8 +60,7 @@ BOOST_AUTO_TEST_CASE(loop_test) // | | // 5---4---3 // - SpeedProfileProperties speed_profile; - GraphCompressor compressor(speed_profile); + GraphCompressor compressor; std::unordered_set barrier_nodes; std::unordered_set traffic_lights; @@ -118,8 +115,7 @@ BOOST_AUTO_TEST_CASE(t_intersection) // | // 3 // - SpeedProfileProperties speed_profile; - GraphCompressor compressor(speed_profile); + GraphCompressor compressor; std::unordered_set barrier_nodes; std::unordered_set traffic_lights; @@ -155,8 +151,7 @@ BOOST_AUTO_TEST_CASE(street_name_changes) // // 0---1---2 // - SpeedProfileProperties speed_profile; - GraphCompressor compressor(speed_profile); + GraphCompressor compressor; std::unordered_set barrier_nodes; std::unordered_set traffic_lights; @@ -186,8 +181,7 @@ BOOST_AUTO_TEST_CASE(direction_changes) // // 0-->1---2 // - SpeedProfileProperties speed_profile; - GraphCompressor compressor(speed_profile); + GraphCompressor compressor; std::unordered_set barrier_nodes; std::unordered_set traffic_lights;