forked from organicmaps/organicmaps
[routing] Itegration tests bad turns counter fix.
This commit is contained in:
parent
ec7362ca60
commit
20e99ffe09
1 changed files with 2 additions and 1 deletions
|
@ -210,7 +210,8 @@ namespace integration
|
|||
|
||||
void TestTurnCount(routing::Route const & route, uint32_t expectedTurnCount)
|
||||
{
|
||||
TEST_EQUAL(route.GetTurns().size(), expectedTurnCount, ());
|
||||
// We use -1 for ignoring the "ReachedYourDestination" turn record.
|
||||
TEST_EQUAL(route.GetTurns().size() - 1, expectedTurnCount, ());
|
||||
}
|
||||
|
||||
void TestRouteLength(Route const & route, double expectedRouteMeters,
|
||||
|
|
Loading…
Add table
Reference in a new issue