Fix log output in AllLocalFilesLookup test

This commit is contained in:
Sergey Yershov 2016-01-27 13:54:10 +03:00
parent c4e0087fc7
commit ae6de81e19

View file

@ -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, ());