@@ -4224,7 +4224,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, ProtectAndReleaseTileKeys) {
42244224 olp::cache::CacheSettings cache_settings;
42254225 const std::string cache_path =
42264226 olp::utils::Dir::TempDirectory () + " /integration_test" ;
4227- olp::utils::Dir::remove (cache_path);
4227+ olp::utils::Dir::Remove (cache_path);
42284228 cache_settings.disk_path_mutable = cache_path;
42294229 std::shared_ptr<olp::cache::KeyValueCache> cache =
42304230 olp::client::OlpClientSettingsFactory::CreateDefaultCache (cache_settings);
@@ -4265,7 +4265,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, ProtectAndReleaseTileKeys) {
42654265 ASSERT_TRUE (client.Release ({tile_key}));
42664266 ASSERT_FALSE (client.IsCached (tile_key));
42674267 // remove cache
4268- olp::utils::Dir::remove (cache_path);
4268+ olp::utils::Dir::Remove (cache_path);
42694269}
42704270
42714271TEST_F (DataserviceReadVersionedLayerClientTest, ProtectAndReleasePartition) {
@@ -4280,7 +4280,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, ProtectAndReleasePartition) {
42804280 olp::cache::CacheSettings cache_settings;
42814281 const std::string cache_path =
42824282 olp::utils::Dir::TempDirectory () + " /integration_test" ;
4283- olp::utils::Dir::remove (cache_path);
4283+ olp::utils::Dir::Remove (cache_path);
42844284 cache_settings.disk_path_mutable = cache_path;
42854285 std::shared_ptr<olp::cache::KeyValueCache> cache =
42864286 olp::client::OlpClientSettingsFactory::CreateDefaultCache (cache_settings);
@@ -4321,7 +4321,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, ProtectAndReleaseWithEviction) {
43214321 const std::string blob_data (data_size, 0 );
43224322 const std::string cache_path =
43234323 olp::utils::Dir::TempDirectory () + " /integration_test" ;
4324- olp::utils::Dir::remove (cache_path);
4324+ olp::utils::Dir::Remove (cache_path);
43254325 olp::cache::CacheSettings cache_settings;
43264326 cache_settings.disk_path_mutable = cache_path;
43274327 cache_settings.max_memory_cache_size = 0u ;
@@ -4425,7 +4425,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, ProtectAndReleaseWithEviction) {
44254425 // after release key is evicted
44264426 ASSERT_FALSE (client.IsCached (protected_key));
44274427 // remove cache folder
4428- olp::utils::Dir::remove (cache_path);
4428+ olp::utils::Dir::Remove (cache_path);
44294429}
44304430
44314431TEST_F (DataserviceReadVersionedLayerClientTest, CatalogEndpointProvider) {
@@ -4504,7 +4504,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, OverlappingQuads) {
45044504 const std::string blob_data (data_size, 0 );
45054505 const std::string cache_path =
45064506 olp::utils::Dir::TempDirectory () + " /integration_test" ;
4507- olp::utils::Dir::remove (cache_path);
4507+ olp::utils::Dir::Remove (cache_path);
45084508 olp::cache::CacheSettings cache_settings;
45094509 cache_settings.disk_path_mutable = cache_path;
45104510 settings_.cache =
@@ -4583,7 +4583,7 @@ TEST_F(DataserviceReadVersionedLayerClientTest, OverlappingQuads) {
45834583 }
45844584
45854585 // remove cache folder
4586- olp::utils::Dir::remove (cache_path);
4586+ olp::utils::Dir::Remove (cache_path);
45874587}
45884588
45894589TEST_F (DataserviceReadVersionedLayerClientTest, QuadTreeIndex) {
0 commit comments