forked from organicmaps/organicmaps
[platform][tests] Fixed World files version check.
This commit is contained in:
parent
854f4d6974
commit
34ec9d6c14
1 changed files with 3 additions and 2 deletions
|
@ -257,15 +257,16 @@ UNIT_TEST(LocalCountryFile_AllLocalFilesLookup)
|
|||
bool worldCoastsFound = false;
|
||||
for (auto const & file : localFiles)
|
||||
{
|
||||
// With the new concepts, World mwm files have valid version.
|
||||
if (file.GetCountryName() == WORLD_FILE_NAME)
|
||||
{
|
||||
worldFound = true;
|
||||
TEST_EQUAL(0, file.GetVersion(), ());
|
||||
TEST_NOT_EQUAL(0, file.GetVersion(), ());
|
||||
}
|
||||
if (file.GetCountryName() == WORLD_COASTS_FILE_NAME)
|
||||
{
|
||||
worldCoastsFound = true;
|
||||
TEST_EQUAL(0, file.GetVersion(), ());
|
||||
TEST_NOT_EQUAL(0, file.GetVersion(), ());
|
||||
}
|
||||
}
|
||||
TEST(worldFound, ());
|
||||
|
|
Loading…
Add table
Reference in a new issue