From 39c0d3b1f9e5997e0abf4e3416879084c0b5a844 Mon Sep 17 00:00:00 2001 From: Alexander Boriskov Date: Wed, 20 Nov 2019 19:08:48 +0300 Subject: [PATCH] [Platform] Fixed function name for CatalogueApi test --- map/map_tests/mwm_url_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/map/map_tests/mwm_url_tests.cpp b/map/map_tests/mwm_url_tests.cpp index 3a38c4edfd..c6928c9e4a 100644 --- a/map/map_tests/mwm_url_tests.cpp +++ b/map/map_tests/mwm_url_tests.cpp @@ -58,7 +58,7 @@ public: return m_m->GetUserMarkIds(type).size(); } - Catalog const & GetCatalogItem() const { return m_api.GetCatalogItem(); } + Catalog const & GetCatalog() const { return m_api.GetCatalog(); } vector GetRoutePoints() const { return m_api.GetRoutePoints(); } url_scheme::SearchRequest const & GetSearchRequest() const { return m_api.GetSearchRequest(); } string const & GetGlobalBackUrl() const { return m_api.GetGlobalBackUrl(); } @@ -151,7 +151,7 @@ UNIT_TEST(CatalogueApiSmoke) ApiTest test(uriString); TEST(test.IsValid(), ()); - auto const & catalogItem = test.GetCatalogItem(); + auto const & catalogItem = test.GetCatalog(); TEST_EQUAL(catalogItem.m_id, "440f02e5-ff38-45ed-95c0-44587c9a5fc7", ()); TEST_EQUAL(catalogItem.m_name, "CatalogGroupName", ()); }