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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2015-05-19 13:44:57 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:13 +0300
commit911e9cb9b8ec6d0377f986cea7a64a23bb955808 (patch)
treebb2e42f17c16fc8154153588edc7098f2d91498d /routing/routing_tests/turns_generator_test.cpp
parent98e3583350706289a3fe3fd62ad695382b7bc963 (diff)
The turn functionality is moved to the turn_generator unit.
Diffstat (limited to 'routing/routing_tests/turns_generator_test.cpp')
-rw-r--r--routing/routing_tests/turns_generator_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing/routing_tests/turns_generator_test.cpp b/routing/routing_tests/turns_generator_test.cpp
index 5e0bd1b40c..fdc586402b 100644
--- a/routing/routing_tests/turns_generator_test.cpp
+++ b/routing/routing_tests/turns_generator_test.cpp
@@ -298,7 +298,7 @@ UNIT_TEST(TestGetRoundaboutDirection)
{
// The signature of GetRoundaboutDirection function is
// GetRoundaboutDirection(bool isIngoingEdgeRoundabout, bool isOutgoingEdgeRoundabout, bool
- // isJunctionOfSeveralTurns)
+ // isMultiTurnJunction)
TEST_EQUAL(GetRoundaboutDirection(true, true, true), TurnDirection::StayOnRoundAbout, ());
TEST_EQUAL(GetRoundaboutDirection(true, true, false), TurnDirection::NoTurn, ());
TEST_EQUAL(GetRoundaboutDirection(false, true, false), TurnDirection::EnterRoundAbout, ());