summaryrefslogtreecommitdiff
path: root/test/gl/bucket.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/gl/bucket.test.cpp')
-rw-r--r--test/gl/bucket.test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/gl/bucket.test.cpp b/test/gl/bucket.test.cpp
index e0ca635ddf..c3702cf268 100644
--- a/test/gl/bucket.test.cpp
+++ b/test/gl/bucket.test.cpp
@@ -11,22 +11,22 @@
using namespace mbgl;
-TEST(Buckets, CircleBucket) {
+TEST(Buckets, CircleBucket) { // NOLINT
CircleBucket bucket { { {0, 0, 0}, MapMode::Still }, {} };
ASSERT_FALSE(bucket.hasData());
}
-TEST(Buckets, FillBucket) {
+TEST(Buckets, FillBucket) { // NOLINT
FillBucket bucket { { {0, 0, 0}, MapMode::Still }, {} };
ASSERT_FALSE(bucket.hasData());
}
-TEST(Buckets, LineBucket) {
+TEST(Buckets, LineBucket) { // NOLINT
LineBucket bucket { { {0, 0, 0}, MapMode::Still }, {}, {} };
ASSERT_FALSE(bucket.hasData());
}
-TEST(Buckets, SymbolBucket) {
+TEST(Buckets, SymbolBucket) { // NOLINT
style::SymbolLayoutProperties::PossiblyEvaluated layout;
bool sdfIcons = false;
bool iconsNeedLinear = false;