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:
authorvng <viktor.govako@gmail.com>2015-07-22 15:27:39 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:57:34 +0300
commit1d0179fa98360d86aad76903ba29223e53b589c6 (patch)
treed305a272f4020ec8c3b046466a8e7a10b5e25ce1 /map/map_tests
parent2f25caa3e845b4922476a6525e0f1f8e47430e49 (diff)
Leave feature type as-is even if name is empty.
Diffstat (limited to 'map/map_tests')
-rw-r--r--map/map_tests/bookmarks_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/map_tests/bookmarks_test.cpp b/map/map_tests/bookmarks_test.cpp
index f41bd679a9..f8f40ec2a3 100644
--- a/map/map_tests/bookmarks_test.cpp
+++ b/map/map_tests/bookmarks_test.cpp
@@ -391,7 +391,7 @@ namespace
TEST_EQUAL(info.m_street, poi.m_street, ());
TEST_EQUAL(info.m_house, poi.m_house, ());
TEST_EQUAL(info.m_types.size(), 1, ());
- TEST(strcmp(info.GetBestType(), poi.m_type) == 0, ());
+ TEST_EQUAL(info.GetBestType(), poi.m_type, ());
}
}