diff options
author | Chris Loer <chris.loer@gmail.com> | 2018-10-02 19:02:17 -0700 |
---|---|---|
committer | Chris Loer <chris.loer@mapbox.com> | 2018-10-15 13:15:46 -0700 |
commit | 2c2241c50645a677ec1d45aa1895021244744869 (patch) | |
tree | 0f7dfc2379a6a1256a8fb68437d76df203c1ac21 /test/style/expression | |
parent | c99c3602be347b14eb17b902aedca7f115bf4b0f (diff) | |
download | qtlocation-mapboxgl-2c2241c50645a677ec1d45aa1895021244744869.tar.gz |
[test] Enable 'format' Expression test.
Diffstat (limited to 'test/style/expression')
-rw-r--r-- | test/style/expression/expression.test.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/style/expression/expression.test.cpp b/test/style/expression/expression.test.cpp index bed3d4f063..dd986c98f5 100644 --- a/test/style/expression/expression.test.cpp +++ b/test/style/expression/expression.test.cpp @@ -36,8 +36,7 @@ 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 - // TODO: "format": https://github.com/mapbox/mapbox-gl-native/issues/12612 - if (name == "feature-state" || name == "interpolate-hcl" || name == "interpolate-lab" || name == "format") { + if (name == "feature-state" || 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."; } |