Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'openlr/openlr_tests/decoded_path_test.cpp')
-rw-r--r--openlr/openlr_tests/decoded_path_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/openlr/openlr_tests/decoded_path_test.cpp b/openlr/openlr_tests/decoded_path_test.cpp
index 9f1753bb21..01c12a4015 100644
--- a/openlr/openlr_tests/decoded_path_test.cpp
+++ b/openlr/openlr_tests/decoded_path_test.cpp
@@ -133,14 +133,14 @@ void WithRoad(vector<m2::PointD> const & points, Func && fn)
builder.Add(TestRoad(points, "Interstate 60", "en"));
}
- DataSource dataSource;
+ DataSource dataSource(make_unique<FeatureSourceFactory>());
auto const regResult = dataSource.RegisterMap(country);
TEST_EQUAL(regResult.second, MwmSet::RegResult::Success, ());
MwmSet::MwmHandle mwmHandle = dataSource.GetMwmHandleById(regResult.first);
TEST(mwmHandle.IsAlive(), ());
- DataSource::FeaturesLoaderGuard const guard(dataSource, regResult.first);
+ DataSource::FeaturesLoaderGuard const guard(dataSource, regResult.first, FeatureSourceFactory());
FeatureType road;
TEST(guard.GetFeatureByIndex(0, road), ());
road.ParseEverything();