Fixing RussiaHugeRoundaboutTurnTest integration test and TestFixupTurns routing unit test after changing with keeping exit number in LeaveRoundAbout turn.

This commit is contained in:
Vladimir Byko-Ianko 2015-10-08 12:55:11 +03:00
parent d9083cef3f
commit 06103fe580
2 changed files with 2 additions and 2 deletions

View file

@ -202,7 +202,7 @@ UNIT_TEST(RussiaHugeRoundaboutTurnTest)
integration::GetNthTurn(route, 1)
.TestValid()
.TestDirection(TurnDirection::LeaveRoundAbout)
.TestRoundAboutExitNum(0);
.TestRoundAboutExitNum(4);
}
UNIT_TEST(BelarusMiskProspNezavisimostiMKADTurnTest)

View file

@ -138,7 +138,7 @@ UNIT_TEST(TestFixupTurns)
FixupTurns(pointsMerc1, turnsDir1);
Route::TTurns const expectedTurnDir1 = {{0, TurnDirection::EnterRoundAbout, 2},
{2, TurnDirection::LeaveRoundAbout},
{2, TurnDirection::LeaveRoundAbout, 2},
{3, TurnDirection::ReachedYourDestination}};
TEST_EQUAL(turnsDir1, expectedTurnDir1, ());