summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuha Alanen <juha.alanen@mapbox.com>2019-08-21 13:57:49 +0300
committerJuha Alanen <19551460+jmalanen@users.noreply.github.com>2019-09-18 14:29:15 +0300
commit1b639d08198373c1b838aeea838527ce3fc4f59f (patch)
treee6d28ebbaf325e9ec528253c8df5897b7cc0bee1
parent599fa581f483b6a691c3e1cc663525ab486259c7 (diff)
downloadqtlocation-mapboxgl-1b639d08198373c1b838aeea838527ce3fc4f59f.tar.gz
[tests] Update expression unit test for feature state
-rw-r--r--test/style/expression/expression.test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/style/expression/expression.test.cpp b/test/style/expression/expression.test.cpp
index dd986c98f5..ef9f7b7930 100644
--- a/test/style/expression/expression.test.cpp
+++ b/test/style/expression/expression.test.cpp
@@ -33,10 +33,9 @@ TEST(Expression, IsExpression) {
document.Parse<0>(R"([")" + name + R"("])");
const JSValue* expression = &document;
- // 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") {
+ if (name == "interpolate-hcl" || name == "interpolate-lab") {
if (expression::isExpression(conversion::Convertible(expression))) {
ASSERT_TRUE(false) << "Expression name" << name << "is implemented - please update Expression.IsExpression test.";
}