Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'search/search_tests/locality_finder_test.cpp')
-rw-r--r--search/search_tests/locality_finder_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/search_tests/locality_finder_test.cpp b/search/search_tests/locality_finder_test.cpp
index 48314862ae..bcb50e6227 100644
--- a/search/search_tests/locality_finder_test.cpp
+++ b/search/search_tests/locality_finder_test.cpp
@@ -59,10 +59,10 @@ UNIT_TEST(LocalityFinder)
auto const p = index.Register(world);
TEST_EQUAL(MwmSet::RegResult::Success, p.second, ());
- MwmSet::MwmHandle const & handle = p.first;
- TEST(handle.IsAlive(), ());
+ MwmSet::MwmId const & id = p.first;
+ TEST(id.IsAlive(), ());
- rect = handle.GetId().GetInfo()->m_limitRect;
+ rect = id.GetInfo()->m_limitRect;
}
catch (RootException const & ex)
{