diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-06-24 15:28:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-24 15:28:10 -0700 |
commit | b8326870e1f3960b169746b0473326060bb6cf54 (patch) | |
tree | 0bdbb3215df1150d959b32bae51930cdf8570c5b /test | |
parent | 3d16cd088ffe8f0a07f6d4f1dd38ac2082cd3f38 (diff) | |
download | qtlocation-mapboxgl-b8326870e1f3960b169746b0473326060bb6cf54.tar.gz |
[core] Increment completedTileCount when appropriate (#5475)
Diffstat (limited to 'test')
-rw-r--r-- | test/storage/offline_download.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/storage/offline_download.cpp b/test/storage/offline_download.cpp index 07218edaff..eb676e3b8d 100644 --- a/test/storage/offline_download.cpp +++ b/test/storage/offline_download.cpp @@ -226,6 +226,8 @@ TEST(OfflineDownload, Activate) { EXPECT_EQ(status.requiredResourceCount, computedStatus.requiredResourceCount); EXPECT_EQ(status.completedResourceCount, computedStatus.completedResourceCount); EXPECT_EQ(status.completedResourceSize, computedStatus.completedResourceSize); + EXPECT_EQ(status.completedTileCount, computedStatus.completedTileCount); + EXPECT_EQ(status.completedTileSize, computedStatus.completedTileSize); EXPECT_TRUE(status.requiredResourceCountIsPrecise); test.loop.stop(); |