build fix

This commit is contained in:
Arsentiy Milchakov 2020-05-20 10:59:32 +03:00 committed by Tatiana Yan
parent 846a4c62f6
commit ee9cf419db

View file

@ -26,11 +26,11 @@ UNIT_CLASS_TEST(AsyncGuiThread, GuidesOnMap_GetGalleryOnMap)
{
guides_on_map::Api api("http://localhost:34568/");
api.SetDelegate(std::make_unique<DelegateForTesting>());
m2::AnyRectD viewport = {};
m2::AnyRectD::Corners corners = {};
uint8_t zoomlevel = 1;
guides_on_map::GuidesOnMap result{};
api.GetGuidesOnMap(viewport, zoomlevel, [&result](guides_on_map::GuidesOnMap const & gallery)
api.GetGuidesOnMap(corners, zoomlevel, [&result](guides_on_map::GuidesOnMap const & gallery)
{
result = gallery;
testing::Notify();