Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
silathdiir committed Oct 31, 2024
1 parent b3119dc commit a24cfde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verifiable-db/src/cells_tree/partial_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ mod tests {
let individual_cnt = if is_multiplier { F::ZERO } else { F::ONE };
assert_eq!(
pi.individual_counter(),
individual_cnt + pi.individual_counter(),
individual_cnt + child_pi.individual_counter(),
);
// Check multiplier counter
assert_eq!(
pi.multiplier_counter(),
F::ONE - individual_cnt + pi.multiplier_counter(),
F::ONE - individual_cnt + child_pi.multiplier_counter(),
);
}
}

0 comments on commit a24cfde

Please sign in to comment.