summaryrefslogtreecommitdiff
path: root/test/style
diff options
context:
space:
mode:
authorKevin Li <kevin.li@mapbox.com>2020-02-15 17:36:57 +0800
committerGitHub <noreply@github.com>2020-02-15 17:36:57 +0800
commit02274e76019bcfb938f50cdb638eca49c33de786 (patch)
treeed472d6d3eb511a51bd9fcd2fb568b96976aafd7 /test/style
parent59294aaef333bdd455bd13d6bab6fca730379b52 (diff)
downloadqtlocation-mapboxgl-02274e76019bcfb938f50cdb638eca49c33de786.tar.gz
[core] Implement 'in' expression. (#16162)
* Implement in.cpp * Fix review comments. * Add expression_equality test for 'in' * Fix review comments. * [core] Update changelog. * [core] Update mapbox-gl-js * [core] Ignore render-tests/debug/padding * [core] Update baseline.
Diffstat (limited to 'test/style')
-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 bffadf1668..b137df769a 100644
--- a/test/style/expression/expression.test.cpp
+++ b/test/style/expression/expression.test.cpp
@@ -35,8 +35,7 @@ TEST(Expression, IsExpression) {
// TODO: "interpolate-hcl": https://github.com/mapbox/mapbox-gl-native/issues/8720
// TODO: "interpolate-lab": https://github.com/mapbox/mapbox-gl-native/issues/8720
- // TODO: "in": https://github.com/mapbox/mapbox-gl-native/issues/15893
- if (name == "interpolate-hcl" || name == "interpolate-lab" || name == "in") {
+ 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.";
}