summaryrefslogtreecommitdiff
path: root/test/math/wrap.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/math/wrap.test.cpp')
-rw-r--r--test/math/wrap.test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/math/wrap.test.cpp b/test/math/wrap.test.cpp
index 5610257a5c..8d12f3b100 100644
--- a/test/math/wrap.test.cpp
+++ b/test/math/wrap.test.cpp
@@ -5,22 +5,22 @@
using namespace mbgl;
-TEST(Math, WrapHigherValue) {
+TEST(Math, WrapHigherValue) { // NOLINT
ASSERT_DOUBLE_EQ(4.0, util::wrap(16.0, 0.0, 12.0));
}
-TEST(Math, WrapLowerValue) {
+TEST(Math, WrapLowerValue) { // NOLINT
ASSERT_DOUBLE_EQ(9.0, util::wrap(-3.0, 0.0, 12.0));
}
-TEST(Math, WrapInRangeValue) {
+TEST(Math, WrapInRangeValue) { // NOLINT
ASSERT_DOUBLE_EQ(4.0, util::wrap(4.0, 0.0, 12.0));
}
-TEST(Math, WrapMaxValue) {
+TEST(Math, WrapMaxValue) { // NOLINT
ASSERT_DOUBLE_EQ(0.0, util::wrap(12.0, 0.0, 12.0));
}
-TEST(Math, WrapMinValue) {
+TEST(Math, WrapMinValue) { // NOLINT
ASSERT_DOUBLE_EQ(0.0, util::wrap(0.0, 0.0, 12.0));
}