[search_tests] Fix bad m_resultType.

This commit is contained in:
tatiana-yan 2021-03-11 15:11:53 +03:00 committed by mpimenov
parent 9ab88d2bef
commit c284e16d4a
2 changed files with 4 additions and 0 deletions

View file

@ -258,7 +258,10 @@ double RankingInfo::GetLinearModelRank() const
result += m_falseCats * kFalseCats;
result += kType[m_type];
if (Model::IsPoi(m_type))
{
CHECK_NOT_EQUAL(m_resultType, ResultType::Count, ());
result += kResultType[base::Underlying(m_resultType)];
}
result += (m_allTokensUsed ? 1 : 0) * kAllTokensUsed;
result += (m_exactCountryOrCapital ? 1 : 0) * kExactCountryOrCapital;
auto const nameRank = kNameScore[nameScore] + kErrorsMade * GetErrorsMadePerToken() +

View file

@ -86,6 +86,7 @@ UNIT_TEST(PreferCountry)
cafe.m_tokenRanges[Model::TYPE_SUBPOI] = TokenRange(0, 1);
cafe.m_exactCountryOrCapital = false;
cafe.m_type = Model::TYPE_SUBPOI;
cafe.m_resultType = ResultType::Eat;
auto country = info;
country.m_distanceToPivot = 1e6;