forked from organicmaps/organicmaps
[generator] fix tests
This commit is contained in:
parent
e717ba01e6
commit
b354bb8415
2 changed files with 3 additions and 3 deletions
|
@ -88,7 +88,7 @@ UNIT_TEST(RestrictionTest_ParseRestrictions)
|
|||
|
||||
RestrictionCollector restrictionCollector;
|
||||
|
||||
Platform const & platform = Platform();
|
||||
Platform const & platform = GetPlatform();
|
||||
|
||||
TEST(restrictionCollector.ParseRestrictions(
|
||||
my::JoinPath(platform.WritableDir(), kRestrictionPath)),
|
||||
|
@ -114,7 +114,7 @@ UNIT_TEST(RestrictionTest_RestrictionCollectorWholeClassTest)
|
|||
20, 2,
|
||||
30, 3,
|
||||
40, 4)";
|
||||
Platform const & platform = Platform();
|
||||
Platform const & platform = GetPlatform();
|
||||
ScopedFile mappingScopedFile(osmIdsToFeatureIdsPath, ScopedFile::Mode::Create);
|
||||
std::string const osmIdsToFeatureIdsFullPath = mappingScopedFile.GetFullPath();
|
||||
ReEncodeOsmIdsToFeatureIdsMapping(kOsmIdsToFeatureIdsContent, osmIdsToFeatureIdsFullPath);
|
||||
|
|
|
@ -126,7 +126,7 @@ void RegionInfoCollector::Fill(OsmElement const & el, RegionData & rd)
|
|||
}
|
||||
catch (std::exception const & e) // std::invalid_argument, std::out_of_range
|
||||
{
|
||||
LOG(::my::LERROR, (e.what()));
|
||||
LOG(::my::LWARNING, (e.what()));
|
||||
rd.m_adminLevel = AdminLevel::Unknown;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue