[search][tests] Updated "San Francisco" test.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2024-04-30 16:24:38 -03:00 committed by Viktor Havaka
parent a4c8d97089
commit c0dd56201e

View file

@ -1187,11 +1187,11 @@ UNIT_CLASS_TEST(MwmTestsFixture, San_Francisco)
auto const & results = request->Results();
TEST_GREATER(results.size(), kTopPoiResultsCount, ());
TEST_EQUAL(results[0].GetFeatureType(), cl.GetTypeByPath({"shop", "laundry"}), ());
TEST_LESS(GetDistanceM(results[0], center), 1.0E4, ());
TEST_EQUAL(results[0].GetFeatureType(), cl.GetTypeByPath({"place", "city"}), ());
TEST_LESS(GetDistanceM(results[0], center), 4.2E6, ());
TEST_EQUAL(results[1].GetFeatureType(), cl.GetTypeByPath({"place", "city"}), ());
TEST_LESS(GetDistanceM(results[1], center), 4.2E6, ());
TEST_EQUAL(results[1].GetFeatureType(), cl.GetTypeByPath({"shop", "laundry"}), ());
TEST_LESS(GetDistanceM(results[1], center), 1.0E4, ());
}
}