summaryrefslogtreecommitdiff
path: root/test/style/function/source_function.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/style/function/source_function.test.cpp')
-rw-r--r--test/style/function/source_function.test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/style/function/source_function.test.cpp b/test/style/function/source_function.test.cpp
index 260620c8d0..d266385ba9 100644
--- a/test/style/function/source_function.test.cpp
+++ b/test/style/function/source_function.test.cpp
@@ -44,7 +44,7 @@ static StubGeometryTileFeature falseFeature {
PropertyMap {{ "property", false }}
};
-TEST(SourceFunction, Identity) {
+TEST(SourceFunction, Identity) { // NOLINT
EXPECT_EQ(1.0f, SourceFunction<float>("property", IdentityStops<float>(), 0.0f)
.evaluate(oneInteger, 2.0f));
EXPECT_EQ(1.0f, SourceFunction<float>("property", IdentityStops<float>(), 0.0f)
@@ -68,7 +68,7 @@ TEST(SourceFunction, Identity) {
.evaluate(oneTwoString, zeroArray)));
}
-TEST(SourceFunction, Categorical) {
+TEST(SourceFunction, Categorical) { // NOLINT
EXPECT_EQ(1.0f, SourceFunction<float>("property", CategoricalStops<float>({{ int64_t(1), 1.0f }}))
.evaluate(oneInteger, 0.0f));
EXPECT_EQ(1.0f, SourceFunction<float>("property", CategoricalStops<float>({{ int64_t(1), 1.0f }}))