[generator] fix tests

This commit is contained in:
Mikhail Gorbushin 2018-09-05 12:50:41 +03:00 committed by Tatiana Yan
parent e717ba01e6
commit b354bb8415
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -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;
}
}