Skip to content

Commit

Permalink
remove redundant assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Sep 20, 2024
1 parent d6a1992 commit 40bc208
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions crates/chia-datalayer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1549,8 +1549,6 @@ mod tests {
// open_dot(&mut merkle_blob.to_dot().set_note("first after"));

merkle_blob.check();

assert_eq!(merkle_blob.free_indexes.len(), 0);
assert_eq!(merkle_blob.kv_to_index.len(), 1);
}

Expand All @@ -1567,10 +1565,6 @@ mod tests {
merkle_blob.delete(key_value_id).unwrap();

merkle_blob.check();
assert_eq!(
merkle_blob.free_indexes.len(),
merkle_blob.extend_index() as usize
);
assert_eq!(merkle_blob.kv_to_index.len(), 0);
}
}

0 comments on commit 40bc208

Please sign in to comment.