summaryrefslogtreecommitdiff
path: root/test/gl/bucket.test.cpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-15 15:04:23 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-15 15:33:12 +0300
commitc69e8fc0a6ee61f3b9ced7eef9212103b5962119 (patch)
tree562ee7467200f247f471274ed10a1f8bfb1a7dae /test/gl/bucket.test.cpp
parentd4f6cac686bdd92b913a8877c5a984dc0082b7a8 (diff)
downloadqtlocation-mapboxgl-c69e8fc0a6ee61f3b9ced7eef9212103b5962119.tar.gz
[tidy] Use NOLINT instead of per-folder .clang-tidy
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;