Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ajkr committed Mar 22, 2024
1 parent c6e7805 commit f3685f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/blob_db/blob_db_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1027,11 +1027,11 @@ TEST_F(BlobDBTest, GetLiveFilesMetaData) {
ASSERT_GT(all_files.size(), blob_files.size());

ASSERT_EQ("000001.blob", blob_files[0].relative_filename);
ASSERT_EQ("blob_dir", blob_files[0].directory);
ASSERT_EQ(blob_db_impl()->TEST_blob_dir(), blob_files[0].directory);
ASSERT_GT(blob_files[0].size, 0);

ASSERT_EQ("000002.blob", blob_files[1].relative_filename);
ASSERT_EQ("blob_dir", blob_files[1].directory);
ASSERT_EQ(blob_db_impl()->TEST_blob_dir(), blob_files[1].directory);
ASSERT_GT(blob_files[1].size, 0);

VerifyDB(data);
Expand Down

0 comments on commit f3685f9

Please sign in to comment.