Skip to content

Commit

Permalink
test: fix test values
Browse files Browse the repository at this point in the history
  • Loading branch information
zmalatrax committed Dec 18, 2024
1 parent 8d03db0 commit 56ab285
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/brainfuck_prover/src/components/instruction/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -575,12 +575,12 @@ mod tests {
let entry_1 = InstructionTableEntry {
ip: BaseField::zero(),
ci: BaseField::from(43),
ni: BaseField::from(91),
ni: BaseField::from(45),
};
let entry_2 = InstructionTableEntry {
ip: BaseField::one(),
ci: BaseField::from(3),
ni: BaseField::from(9),
ci: BaseField::from(45),
ni: BaseField::from(92),
};

let row = InstructionTableRow::new(&entry_1, &entry_2);
Expand Down

0 comments on commit 56ab285

Please sign in to comment.