From ae6de81e1956d1cbe8b379707332599b9e15291c Mon Sep 17 00:00:00 2001 From: Sergey Yershov Date: Wed, 27 Jan 2016 13:54:10 +0300 Subject: [PATCH] Fix log output in AllLocalFilesLookup test --- platform/platform_tests/local_country_file_tests.cpp | 4 ++-- 1 file 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, ());