Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yongqiang YANG committed Dec 8, 2024
1 parent b05efba commit 3f47d20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloud/test/meta_service_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,7 @@ static void check_vault_name_consistency(const MetaServiceProxy* meta_service,
found++;
}
}
ASSERT_EQ(found, 1) << "vault_name " << vault_name
<< " does not exists in objinfo";
ASSERT_EQ(found, 1) << "vault_name " << vault_name << " does not exists in objinfo";
}

for (const auto& vault_pb : all_vaults) {
Expand All @@ -499,7 +498,8 @@ static void check_vault_name_consistency(const MetaServiceProxy* meta_service,
found++;
}
}
ASSERT_EQ(found, 1) << "vault_name " << vault_pb.name() << " does not exists in vault names";
ASSERT_EQ(found, 1) << "vault_name " << vault_pb.name()
<< " does not exists in vault names";
}
}

Expand Down

0 comments on commit 3f47d20

Please sign in to comment.