Skip to content

Commit

Permalink
fix case
Browse files Browse the repository at this point in the history
Signed-off-by: Qi Xu <[email protected]>
  • Loading branch information
Qi Xu committed Mar 22, 2024
1 parent 48eee8b commit 844300e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/version_edit_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ TEST_F(VersionEditTest, AddWalDebug) {

VersionEdit edit;
for (int i = 0; i < n; i++) {
edit.AddWal(kLogNumbers[i], WalMetadata(kSizeInBytes[i]));
edit.AddWal(kLogNumbers[i], WalMetadata(kSizeInBytes[i], 0));
}

const WalAdditions& wals = edit.GetWalAdditions();
Expand Down Expand Up @@ -573,7 +573,7 @@ TEST_F(VersionEditTest, IgnorableTags) {
VersionEdit edit;
// Add some ignorable entries.
for (int i = 0; i < 2; i++) {
edit.AddWal(i + 1, WalMetadata(i + 2));
edit.AddWal(i + 1, WalMetadata(i + 2, 0));
}
edit.SetDBId("db_id");
// Add unignorable entries.
Expand Down

0 comments on commit 844300e

Please sign in to comment.