Fixed the build.

This commit is contained in:
Maxim Pimenov 2018-01-22 20:29:10 +03:00 committed by Ilya Zverev
parent daa3ab867a
commit c7be0b24cd

View file

@ -1357,9 +1357,9 @@ UNIT_CLASS_TEST(ProcessorTest, PathsThroughLayers)
FeaturesLayerPathFinder::SetModeForTesting(FeaturesLayerPathFinder::MODE_AUTO);
});
auto const ruleStreet = {ExactMatch(countryId, computingStreet)};
auto const ruleBuilding = {ExactMatch(countryId, statisticalLearningBuilding)};
auto const rulePoi = {ExactMatch(countryId, reinforcementCafe)};
auto const ruleStreet = ExactMatch(countryId, computingStreet);
auto const ruleBuilding = ExactMatch(countryId, statisticalLearningBuilding);
auto const rulePoi = ExactMatch(countryId, reinforcementCafe);
// POI-BUILDING-STREET
TEST(ResultsMatch("computing street statistical learning cafe ", {rulePoi}), ());