summaryrefslogtreecommitdiff
path: root/test/storage
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-09-11 19:11:40 +0300
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-09-12 00:40:08 +0300
commit6899337f86625f78929c04de22351d1021947f5b (patch)
tree20fd4fb8133eb95f205cd3224cdc80387bcf6f3f /test/storage
parent8af78ddbb9744f61d14f9e611aeffc08edd9ac0c (diff)
downloadqtlocation-mapboxgl-6899337f86625f78929c04de22351d1021947f5b.tar.gz
[core] Add Map.Issue15342 unit test
The newly added test checks the fix for constant repaint, caused by `RenderSource::hasFadingTiles()` returning `true` all the time.
Diffstat (limited to 'test/storage')
-rw-r--r--test/storage/offline_download.test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/storage/offline_download.test.cpp b/test/storage/offline_download.test.cpp
index 4e967c297c..ebe3f82ee9 100644
--- a/test/storage/offline_download.test.cpp
+++ b/test/storage/offline_download.test.cpp
@@ -930,8 +930,8 @@ TEST(OfflineDownload, ResourceOfflineUsageUnset) {
};
StubMapObserver mapObserver;
- mapObserver.didFinishRenderingFrameCallback = [&] (MapObserver::RenderMode mode) {
- if (mode == MapObserver::RenderMode::Full) {
+ mapObserver.didFinishRenderingFrameCallback = [&] (MapObserver::RenderFrameStatus status) {
+ if (status.mode == MapObserver::RenderMode::Full) {
test.loop.stop();
}
};