Merge "libsnapshot: CHECK -> CHECK_EQ" into main

This commit is contained in:
Treehugger Robot 2024-09-16 21:04:49 +00:00 committed by Gerrit Code Review
commit 007f95d721

View file

@ -25,7 +25,7 @@ namespace snapshot {
SnapshotMergeStats* SnapshotMergeStats::GetInstance(SnapshotManager& parent) {
static SnapshotMergeStats g_instance(parent.GetMergeStateFilePath());
CHECK(g_instance.path_ == parent.GetMergeStateFilePath());
CHECK_EQ(g_instance.path_, parent.GetMergeStateFilePath());
return &g_instance;
}