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:
Diffstat (limited to 'routing/routing_tests/async_router_test.cpp')
-rw-r--r--routing/routing_tests/async_router_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/routing_tests/async_router_test.cpp b/routing/routing_tests/async_router_test.cpp
index a680258694..db2f89d192 100644
--- a/routing/routing_tests/async_router_test.cpp
+++ b/routing/routing_tests/async_router_test.cpp
@@ -121,7 +121,7 @@ UNIT_CLASS_TEST(AsyncGuiThreadTest, NeedMoreMapsSignalTest)
async.CalculateRoute(Checkpoints({1, 2} /* start */, {5, 6} /* finish */), {3, 4}, false,
bind(ref(resultCallback), _1, _2) /* readyCallback */,
bind(ref(resultCallback), _1, _2) /* needMoreMapsCallback */,
- nullptr /* removeRouteCallback */, nullptr /* progressCallback */, 0);
+ nullptr /* removeRouteCallback */, nullptr /* progressCallback */);
resultCallback.WaitFinish();
@@ -143,7 +143,7 @@ UNIT_CLASS_TEST(AsyncGuiThreadTest, StandardAsyncFogTest)
async.SetRouter(move(router), move(fetcher));
async.CalculateRoute(Checkpoints({1, 2} /* start */, {5, 6} /* finish */), {3, 4}, false,
bind(ref(resultCallback), _1, _2), nullptr /* needMoreMapsCallback */,
- nullptr /* progressCallback */, nullptr /* removeRouteCallback */, 0);
+ nullptr /* progressCallback */, nullptr /* removeRouteCallback */);
resultCallback.WaitFinish();