diff --git a/search/search_integration_tests/processor_test.cpp b/search/search_integration_tests/processor_test.cpp index bf480f3d64..2f9bb09470 100644 --- a/search/search_integration_tests/processor_test.cpp +++ b/search/search_integration_tests/processor_test.cpp @@ -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}), ());