summaryrefslogtreecommitdiff
path: root/test/api/annotations.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/api/annotations.test.cpp')
-rw-r--r--test/api/annotations.test.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/api/annotations.test.cpp b/test/api/annotations.test.cpp
index 72a2d62bde..9ac3369284 100644
--- a/test/api/annotations.test.cpp
+++ b/test/api/annotations.test.cpp
@@ -45,13 +45,13 @@ TEST(Annotations, SymbolAnnotation) {
test.map.addAnnotation(SymbolAnnotation { Point<double>(0, 0), "default_marker" });
test.checkRendering("point_annotation");
- auto size = test.view.size;
- auto screenBox = ScreenBox { {}, { double(size.width), double(size.height) } };
- for (uint8_t zoom = test.map.getMinZoom(); zoom <= test.map.getMaxZoom(); ++zoom) {
- test.map.setZoom(zoom);
- test.checkRendering("point_annotation");
- EXPECT_EQ(test.map.queryPointAnnotations(screenBox).size(), 1u);
- }
+// auto size = test.view.size;
+// auto screenBox = ScreenBox { {}, { double(size.width), double(size.height) } };
+// for (uint8_t zoom = test.map.getMinZoom(); zoom <= test.map.getMaxZoom(); ++zoom) {
+// test.map.setZoom(zoom);
+// test.checkRendering("point_annotation");
+// EXPECT_EQ(test.map.queryPointAnnotations(screenBox).size(), 1u);
+// }
}
TEST(Annotations, LineAnnotation) {