summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-03-06 11:59:15 +0200
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-03-06 18:00:19 +0200
commit06a8ecdb171a6284f54d1db6847d4cc0cfcc9f91 (patch)
tree8a29cf95124c7efd23af80761919075eaca1c7f9 /test
parent8a8291d8f4ce39d341f42c6d14b2aaad28cd854e (diff)
downloadqtlocation-mapboxgl-06a8ecdb171a6284f54d1db6847d4cc0cfcc9f91.tar.gz
Update mapbox-gl-js submodule to v0.53.0
Diffstat (limited to 'test')
-rw-r--r--test/style/expression/expression.test.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/style/expression/expression.test.cpp b/test/style/expression/expression.test.cpp
index dd986c98f5..42a8fdd726 100644
--- a/test/style/expression/expression.test.cpp
+++ b/test/style/expression/expression.test.cpp
@@ -36,7 +36,10 @@ TEST(Expression, IsExpression) {
// TODO: "feature-state": https://github.com/mapbox/mapbox-gl-native/issues/12613
// TODO: "interpolate-hcl": https://github.com/mapbox/mapbox-gl-native/issues/8720
// TODO: "interpolate-lab": https://github.com/mapbox/mapbox-gl-native/issues/8720
- if (name == "feature-state" || name == "interpolate-hcl" || name == "interpolate-lab") {
+ // TODO: "number-format": https://github.com/mapbox/mapbox-gl-native/issues/13632
+ // TODO: "accumulated": https://github.com/mapbox/mapbox-gl-native/issues/14043
+ if (name == "feature-state" || name == "interpolate-hcl" || name == "interpolate-lab" || name == "number-format" ||
+ name == "accumulated") {
if (expression::isExpression(conversion::Convertible(expression))) {
ASSERT_TRUE(false) << "Expression name" << name << "is implemented - please update Expression.IsExpression test.";
}