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:
authorSergey Yershov <yershov@corp.mail.ru>2016-01-27 13:54:10 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:15:58 +0300
commitae6de81e1956d1cbe8b379707332599b9e15291c (patch)
tree5c8d8413a95bddb56f8aa5fa02d27353c17b6a29 /platform
parentc4e0087fc7c937e5a0ccca285019c92d3080554e (diff)
Fix log output in AllLocalFilesLookup test
Diffstat (limited to 'platform')
-rw-r--r--platform/platform_tests/local_country_file_tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/platform_tests/local_country_file_tests.cpp b/platform/platform_tests/local_country_file_tests.cpp
index 24715c9020..d14290c1d1 100644
--- a/platform/platform_tests/local_country_file_tests.cpp
+++ b/platform/platform_tests/local_country_file_tests.cpp
@@ -293,12 +293,12 @@ UNIT_TEST(LocalCountryFile_AllLocalFilesLookup)
if (file.GetCountryName() == WORLD_FILE_NAME)
{
worldFound = true;
- TEST_NOT_EQUAL(0, file.GetVersion(), ());
+ TEST_NOT_EQUAL(0, file.GetVersion(), (file));
}
if (file.GetCountryName() == WORLD_COASTS_FILE_NAME)
{
worldCoastsFound = true;
- TEST_NOT_EQUAL(0, file.GetVersion(), ());
+ TEST_NOT_EQUAL(0, file.GetVersion(), (file));
}
}
TEST(worldFound, ());