summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLStyleLayerTests.mm.ejs
diff options
context:
space:
mode:
authorLauren Budorick <lauren@mapbox.com>2018-05-08 16:26:19 -0700
committerLauren Budorick <lauren@mapbox.com>2018-05-08 16:26:19 -0700
commit79b276882e86d9f45ebfd87e993502b88cb594d5 (patch)
tree99f08b42c89013a23ea823aafe3a6d0321626dfd /platform/darwin/test/MGLStyleLayerTests.mm.ejs
parent5f27a90d0b5adc5b71d272064a10bf1d89b5dc68 (diff)
downloadqtlocation-mapboxgl-upstream/lbud-expression-spec.tar.gz
Remove some isDataDriven uses/definitionsupstream/lbud-expression-spec
Diffstat (limited to 'platform/darwin/test/MGLStyleLayerTests.mm.ejs')
-rw-r--r--platform/darwin/test/MGLStyleLayerTests.mm.ejs4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/darwin/test/MGLStyleLayerTests.mm.ejs b/platform/darwin/test/MGLStyleLayerTests.mm.ejs
index 0266a033ee..57e5fce533 100644
--- a/platform/darwin/test/MGLStyleLayerTests.mm.ejs
+++ b/platform/darwin/test/MGLStyleLayerTests.mm.ejs
@@ -59,7 +59,7 @@
MGLTransition transitionTest = MGLTransitionMake(5, 4);
<% for (const property of properties) { -%>
-<% if (property.name === 'heatmap-color') continue; -%>
+<% if (property['property-type'] === 'color-ramp') continue; -%>
// <%- originalPropertyName(property) %>
{
@@ -154,7 +154,7 @@
- (void)testPropertyNames {
<% for (const property of properties) { -%>
-<% if (property.name === 'heatmap-color') continue; -%>
+<% if (property['property-type'] === 'color-ramp') continue; -%>
[self testPropertyName:@"<%- property.getter || property.name %>" isBoolean:<%- property.type === 'boolean' ? 'YES' : 'NO' %>];
<% } -%>
}