summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Wojciechowski <lucas@mapbox.com>2018-02-20 15:24:31 -0800
committerLucas Wojciechowski <lucas@mapbox.com>2018-03-07 11:46:17 -0800
commitbce45e89a777642a9a9e98f2be9bb6342083450f (patch)
tree8a11d620bdb750133d874a65d45c4b718605fb46
parent9c55db89312428d809e90021e51b86c70e547306 (diff)
downloadqtlocation-mapboxgl-bce45e89a777642a9a9e98f2be9bb6342083450f.tar.gz
Fix failing tests
-rw-r--r--test/style/filter.test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/style/filter.test.cpp b/test/style/filter.test.cpp
index a67e418456..8f53ca04c0 100644
--- a/test/style/filter.test.cpp
+++ b/test/style/filter.test.cpp
@@ -109,7 +109,7 @@ TEST(Filter, NotHas) {
}
TEST(Filter, ID) {
- StubGeometryTileFeature feature1 { FeatureIdentifier{ int64_t{ 1234 } }, {}, {}, {} };
+ StubGeometryTileFeature feature1 { FeatureIdentifier{ uint64_t{ 1234 } }, {}, {}, {} };
ASSERT_TRUE(parse("[\"==\", \"$id\", 1234]")(feature1));
ASSERT_FALSE(parse("[\"==\", \"$id\", \"1234\"]")(feature1));