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 'routing/routing_tests/routing_mapping_test.cpp')
-rw-r--r--routing/routing_tests/routing_mapping_test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/routing/routing_tests/routing_mapping_test.cpp b/routing/routing_tests/routing_mapping_test.cpp
index 57cdcb7674..7d4c977250 100644
--- a/routing/routing_tests/routing_mapping_test.cpp
+++ b/routing/routing_tests/routing_mapping_test.cpp
@@ -63,7 +63,7 @@ private:
ScopedFile m_testRoutingFile;
LocalCountryFile m_localFile;
TestMwmSet m_testSet;
- pair<MwmSet::MwmHandle, MwmSet::RegResult> m_result;
+ pair<MwmSet::MwmId, MwmSet::RegResult> m_result;
};
UNIT_TEST(RoutingMappingCountryFileLockTest)
@@ -72,10 +72,10 @@ UNIT_TEST(RoutingMappingCountryFileLockTest)
{
RoutingMapping testMapping(generator.GetCountryName(), (&generator.GetMwmSet()));
TEST(testMapping.IsValid(), ());
- TEST_EQUAL(generator.GetNumRefs(), 2, ());
+ TEST_EQUAL(generator.GetNumRefs(), 1, ());
}
// Routing mapping must unlock the file after destruction.
- TEST_EQUAL(generator.GetNumRefs(), 1, ());
+ TEST_EQUAL(generator.GetNumRefs(), 0, ());
}
UNIT_TEST(IndexManagerLockManagementTest)
@@ -87,13 +87,13 @@ UNIT_TEST(IndexManagerLockManagementTest)
{
auto testMapping = manager.GetMappingByName(fileName);
TEST(testMapping->IsValid(), ());
- TEST_EQUAL(generator.GetNumRefs(), 2, ());
+ TEST_EQUAL(generator.GetNumRefs(), 1, ());
}
// We freed mapping, but it still persists inside the manager cache.
- TEST_EQUAL(generator.GetNumRefs(), 2, ());
+ TEST_EQUAL(generator.GetNumRefs(), 1, ());
// Test cache clearing.
manager.Clear();
- TEST_EQUAL(generator.GetNumRefs(), 1, ());
+ TEST_EQUAL(generator.GetNumRefs(), 0, ());
}
} // namespace