Skip to content

Commit

Permalink
merge main.
Browse files Browse the repository at this point in the history
  • Loading branch information
bowang committed Sep 7, 2022
1 parent 22170f3 commit 92e5a50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/blob/blob_source_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1225,7 +1225,7 @@ TEST_F(BlobSecondaryCacheTest, GetBlobsFromSecondaryCache) {
// key0's item should be in the secondary cache.
bool is_in_sec_cache = false;
auto sec_handle0 =
secondary_cache->Lookup(key0, &BlobContents::CreateCallback, true,
secondary_cache->Lookup(key0, create_cb, true,
/*erase_handle=*/true, is_in_sec_cache);
ASSERT_FALSE(is_in_sec_cache);
ASSERT_NE(sec_handle0, nullptr);
Expand All @@ -1252,7 +1252,7 @@ TEST_F(BlobSecondaryCacheTest, GetBlobsFromSecondaryCache) {

bool is_in_sec_cache = false;
auto sec_handle1 =
secondary_cache->Lookup(key1, &BlobContents::CreateCallback, true,
secondary_cache->Lookup(key1, create_cb, true,
/*erase_handle=*/true, is_in_sec_cache);
ASSERT_FALSE(is_in_sec_cache);
ASSERT_EQ(sec_handle1, nullptr);
Expand Down

0 comments on commit 92e5a50

Please sign in to comment.