diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-06-14 15:03:13 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-06-18 16:26:51 +0300 |
commit | 59e7b9a8780e282cf90ede7ae8e3b1affe1e684e (patch) | |
tree | e5f7fd8a74f4a9495d872acdcdf4eb2b44f123f2 /test | |
parent | 9beb740fb747e721b6a678bbe63399c70e132881 (diff) | |
download | qtlocation-mapboxgl-59e7b9a8780e282cf90ede7ae8e3b1affe1e684e.tar.gz |
[core] Rename resetCache to resetDatabase
Avoid confusion about what is being reset. In this case, the whole
database and not only the ambient cache.
Diffstat (limited to 'test')
-rw-r--r-- | test/storage/offline_database.test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/storage/offline_database.test.cpp b/test/storage/offline_database.test.cpp index 7d90357078..d1aa7e2372 100644 --- a/test/storage/offline_database.test.cpp +++ b/test/storage/offline_database.test.cpp @@ -1474,7 +1474,7 @@ TEST(OfflineDatabase, TEST_REQUIRES_WRITE(MergeDatabaseWithDiskFull)) { } #endif // __QT__ -TEST(OfflineDatabse, ChangePath) { +TEST(OfflineDatabase, ChangePath) { std::string newPath("test/fixtures/offline_database/test.db"); OfflineDatabase db(":memory:"); db.changePath(newPath); @@ -1482,13 +1482,13 @@ TEST(OfflineDatabse, ChangePath) { util::deleteFile(newPath); } -TEST(OfflineDatabse, resetCache) { +TEST(OfflineDatabase, ResetDatabase) { FixtureLog log; deleteDatabaseFiles(); util::copyFile(filename, "test/fixtures/offline_database/satellite_test.db"); OfflineDatabase db(filename); - auto result = db.resetCache(); + auto result = db.resetDatabase(); EXPECT_FALSE(result); auto regions = db.listRegions().value(); |