diff --git a/map/style_tests/classificator_tests.cpp b/map/style_tests/classificator_tests.cpp index 41242ba60a..915bc2e782 100644 --- a/map/style_tests/classificator_tests.cpp +++ b/map/style_tests/classificator_tests.cpp @@ -42,9 +42,12 @@ namespace for (size_t s = 0; s < MapStyleCount; ++s) { MapStyle const mapStyle = static_cast(s); - GetStyleReader().SetCurrentStyle(mapStyle); - LOG(LINFO, ("Test with map style", mapStyle)); - fn(); + if (mapStyle != MapStyle::MapStyleMerged) + { + GetStyleReader().SetCurrentStyle(mapStyle); + LOG(LINFO, ("Test with map style", mapStyle)); + fn(); + } } } } // namespace diff --git a/map/style_tests/dashes_test.cpp b/map/style_tests/dashes_test.cpp index fd40cb4b92..ffa6c999f0 100644 --- a/map/style_tests/dashes_test.cpp +++ b/map/style_tests/dashes_test.cpp @@ -19,6 +19,8 @@ UNIT_TEST(Test_Dashes) for (size_t s = 0; s < MapStyleCount; ++s) { MapStyle const mapStyle = static_cast(s); + if (mapStyle == MapStyleMerged) + continue; GetStyleReader().SetCurrentStyle(mapStyle); classificator::Load(); diff --git a/map/style_tests/style_symbols_consistency_test.cpp b/map/style_tests/style_symbols_consistency_test.cpp index 3baad03e17..aa278e0ff4 100644 --- a/map/style_tests/style_symbols_consistency_test.cpp +++ b/map/style_tests/style_symbols_consistency_test.cpp @@ -73,6 +73,8 @@ UNIT_TEST(Test_SymbolsConsistency) for (size_t s = 0; s < MapStyleCount; ++s) { MapStyle const mapStyle = static_cast(s); + if (mapStyle == MapStyleMerged) + continue; GetStyleReader().SetCurrentStyle(mapStyle); classificator::Load();