summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJesse Bounds <jesse@rebounds.net>2016-08-12 17:08:52 -0700
committerGitHub <noreply@github.com>2016-08-12 17:08:52 -0700
commitd4271d993ee751e736dc21a4ccfd6f93319ff374 (patch)
tree309b1715bc17d1221635be71a82d8d97bb4f5d40 /test
parentddf0d25845177d3a3e865dd7e64cf98cf6b8a7d7 (diff)
downloadqtlocation-mapboxgl-d4271d993ee751e736dc21a4ccfd6f93319ff374.tar.gz
[core] Compare unsigned int to unsigned int to pass tidy check (#5986)
Diffstat (limited to 'test')
-rw-r--r--test/api/annotations.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/api/annotations.cpp b/test/api/annotations.cpp
index 336e36ab99..9ec4497588 100644
--- a/test/api/annotations.cpp
+++ b/test/api/annotations.cpp
@@ -227,7 +227,7 @@ TEST(Annotations, QueryRenderedFeatures) {
EXPECT_EQ(*features[0].id, 0);
auto features2 = test.map.queryRenderedFeatures(test.map.pixelForLatLng({ 50, 0 }));
- EXPECT_EQ(features2.size(), 1);
+ EXPECT_EQ(features2.size(), 1u);
EXPECT_TRUE(!!features2[0].id);
EXPECT_EQ(*features2[0].id, 1);
}