summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorzmiao <miao.zhao@mapbox.com>2020-02-19 12:06:42 +0200
committerzmiao <miao.zhao@mapbox.com>2020-02-21 21:39:48 +0200
commitb9425dd4ecd112f0f455b6a6950039d77305a465 (patch)
treec5cc09057e9947c2638af3e96c786b8ecc474713 /test
parentb47fa36c1d5071272b56d6679a20659325e272b1 (diff)
downloadqtlocation-mapboxgl-b9425dd4ecd112f0f455b6a6950039d77305a465.tar.gz
[core] Remove unnecessary includes, fix comments
This reverts commit b5c386ad7708ca9fe14f219b0ffc94cf6ce8fc88.
Diffstat (limited to 'test')
-rw-r--r--test/style/property_expression.test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/style/property_expression.test.cpp b/test/style/property_expression.test.cpp
index 672cff44f5..88096bab6b 100644
--- a/test/style/property_expression.test.cpp
+++ b/test/style/property_expression.test.cpp
@@ -266,7 +266,7 @@ TEST(PropertyExpression, WithinExpression) {
PropertyExpression<bool> propExpr(std::move(expression));
// evaluation test with valid geojson source but FeatureType is not Point/LineString (currently only support
- // FeatureType::Point)
+ // FeatureType::Point and FeatureType::LineString)
{
// testPoly is inside polygon, but will return false
Polygon<double> testRing{{{-9.228515625, -17.560246503294888},
@@ -280,12 +280,12 @@ TEST(PropertyExpression, WithinExpression) {
}
// evaluation test with valid geojson source and valid linestring features
{
- // testLine is inside polygon, but will return true
+ // testLine is inside polygon
LineString<double> testLine0{{-9.228515625, -17.560246503294888}, {-2.4609375, -16.04581345375217}};
auto geoLine0 = convertGeometry(testLine0, canonicalTileID);
StubGeometryTileFeature lineFeature0(FeatureType::LineString, geoLine0);
- // testLine is intersecting polygon even though end points are all inside polygon, but will return false
+ // testLine is intersecting polygon even though end points are all inside polygon, will return false
LineString<double> testLine1{{-10.4150390625, -10.082445532162465}, {-8.8275146484375, -9.194292714912638}};
auto geoLine1 = convertGeometry(testLine1, canonicalTileID);
StubGeometryTileFeature lineFeature1(FeatureType::LineString, geoLine1);