diff --git a/test/style/source.test.cpp b/test/style/source.test.cpp index 01f54d6b186..9d1be3b04b1 100644 --- a/test/style/source.test.cpp +++ b/test/style/source.test.cpp @@ -34,6 +34,8 @@ class SourceTest { ThreadPool threadPool { 1 }; AnnotationManager annotationManager { 1.0 }; style::Style style { fileSource, 1.0 }; + uint32_t fixedPrefetchZoom = 0; + uint32_t dynamicPrefetchZoom = 0; style::UpdateParameters updateParameters { 1.0, @@ -43,7 +45,9 @@ class SourceTest { fileSource, MapMode::Continuous, annotationManager, - style + style, + fixedPrefetchZoom, + dynamicPrefetchZoom }; SourceTest() { diff --git a/test/tile/geojson_tile.test.cpp b/test/tile/geojson_tile.test.cpp index 920e946a2b3..11ed0a57bd4 100644 --- a/test/tile/geojson_tile.test.cpp +++ b/test/tile/geojson_tile.test.cpp @@ -26,6 +26,8 @@ class GeoJSONTileTest { AnnotationManager annotationManager { 1.0 }; style::Style style { fileSource, 1.0 }; Tileset tileset { { "https://example.com" }, { 0, 22 }, "none" }; + uint32_t fixedPrefetchZoom = 0; + uint32_t dynamicPrefetchZoom = 0; style::UpdateParameters updateParameters { 1.0, @@ -35,7 +37,9 @@ class GeoJSONTileTest { fileSource, MapMode::Continuous, annotationManager, - style + style, + fixedPrefetchZoom, + dynamicPrefetchZoom }; }; diff --git a/test/tile/raster_tile.test.cpp b/test/tile/raster_tile.test.cpp index 0d599ceae09..6d862fed2f1 100644 --- a/test/tile/raster_tile.test.cpp +++ b/test/tile/raster_tile.test.cpp @@ -21,6 +21,8 @@ class RasterTileTest { AnnotationManager annotationManager { 1.0 }; style::Style style { fileSource, 1.0 }; Tileset tileset { { "https://example.com" }, { 0, 22 }, "none" }; + uint32_t fixedPrefetchZoom = 0; + uint32_t dynamicPrefetchZoom = 0; style::UpdateParameters updateParameters { 1.0, @@ -30,7 +32,9 @@ class RasterTileTest { fileSource, MapMode::Continuous, annotationManager, - style + style, + fixedPrefetchZoom, + dynamicPrefetchZoom }; }; diff --git a/test/tile/vector_tile.test.cpp b/test/tile/vector_tile.test.cpp index e34629bdbaf..6b246caf8c4 100644 --- a/test/tile/vector_tile.test.cpp +++ b/test/tile/vector_tile.test.cpp @@ -27,6 +27,8 @@ class VectorTileTest { AnnotationManager annotationManager { 1.0 }; style::Style style { fileSource, 1.0 }; Tileset tileset { { "https://example.com" }, { 0, 22 }, "none" }; + uint32_t fixedPrefetchZoom = 0; + uint32_t dynamicPrefetchZoom = 0; style::UpdateParameters updateParameters { 1.0, @@ -36,7 +38,9 @@ class VectorTileTest { fileSource, MapMode::Continuous, annotationManager, - style + style, + fixedPrefetchZoom, + dynamicPrefetchZoom }; };