From a5213af59250aa90fe3533c34b92fda6fee2418e Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Fri, 11 Sep 2015 16:41:17 +0300 Subject: [PATCH] [search] Quickfix of tests - algoshops are currently invisible. --- search/integration_tests/test_mwm_builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/integration_tests/test_mwm_builder.cpp b/search/integration_tests/test_mwm_builder.cpp index 2ce179888e..4d004aa5fb 100644 --- a/search/integration_tests/test_mwm_builder.cpp +++ b/search/integration_tests/test_mwm_builder.cpp @@ -35,7 +35,7 @@ void TestMwmBuilder::AddPOI(m2::PointD const & p, string const & name, string co CHECK(m_collector, ("It's not possible to add features after call to Finish().")); FeatureBuilder1 fb; fb.SetCenter(p); - fb.SetType(m_classificator.GetTypeByPath({"shop", "alcohol"})); + fb.SetType(m_classificator.GetTypeByPath({"railway", "station"})); CHECK(fb.AddName(lang, name), ("Can't set feature name:", name, "(", lang, ")")); (*m_collector)(fb); }