From 1b639d08198373c1b838aeea838527ce3fc4f59f Mon Sep 17 00:00:00 2001 From: Juha Alanen Date: Wed, 21 Aug 2019 13:57:49 +0300 Subject: [tests] Update expression unit test for feature state --- test/style/expression/expression.test.cpp | 3 +-- 1 file changed, 1 insertion(+), 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."; } -- cgit v1.2.1