Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2019-03-04 13:26:24 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2019-03-25 17:48:14 +0300
commit53f52b556cac5b838ee3cf6fbd6a666707fa844a (patch)
treecc0b96e6322ed361cbdf8331a3afbaaf5c2b51e3 /routing
parent6a9a984c702c25643a323acd6c1d6771af9228dc (diff)
[routing] Fixed turn test.
Diffstat (limited to 'routing')
-rw-r--r--routing/routing_integration_tests/turn_test.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/routing/routing_integration_tests/turn_test.cpp b/routing/routing_integration_tests/turn_test.cpp
index 7a0cc2dea6..5641e1aeb1 100644
--- a/routing/routing_integration_tests/turn_test.cpp
+++ b/routing/routing_integration_tests/turn_test.cpp
@@ -556,10 +556,8 @@ UNIT_TEST(RussiaTiinskTest)
RouterResultCode const result = routeResult.second;
TEST_EQUAL(result, RouterResultCode::NoError, ());
- integration::TestTurnCount(route, 2 /* expectedTurnCount */);
+ integration::TestTurnCount(route, 1 /* expectedTurnCount */);
integration::GetNthTurn(route, 0).TestValid().TestOneOfDirections(
- {CarDirection::TurnSlightRight, CarDirection::TurnRight});
- integration::GetNthTurn(route, 1).TestValid().TestOneOfDirections(
{CarDirection::TurnSlightLeft, CarDirection::TurnLeft});
}