From 1cc1d4ea08ae02c3cc9b4dd1474845456c17d1bc Mon Sep 17 00:00:00 2001 From: Sudarsana Babu Nagineni Date: Tue, 26 Mar 2019 00:00:37 +0200 Subject: [core] Add setter/getter for size property in MapOptions --- test/gl/context.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/gl/context.test.cpp') diff --git a/test/gl/context.test.cpp b/test/gl/context.test.cpp index ff9b2ecac2..d9b2750a95 100644 --- a/test/gl/context.test.cpp +++ b/test/gl/context.test.cpp @@ -91,8 +91,8 @@ TEST(GLContextMode, Shared) { HeadlessFrontend frontend { pixelRatio, threadPool, {}, GLContextMode::Shared }; - Map map(frontend, MapObserver::nullObserver(), frontend.getSize(), pixelRatio, threadPool, - MapOptions().withMapMode(MapMode::Static), + Map map(frontend, MapObserver::nullObserver(), pixelRatio, threadPool, + MapOptions().withMapMode(MapMode::Static).withSize(frontend.getSize()), ResourceOptions().withCachePath(":memory:").withAssetPath("test/fixtures/api/assets")); map.getStyle().loadJSON(util::read_file("test/fixtures/api/water.json")); map.jumpTo(CameraOptions().withCenter(LatLng { 37.8, -122.5 }).withZoom(10.0)); -- cgit v1.2.1