Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Jan 11, 2024
1 parent 95ec39f commit 614938f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/src/vm/runners/builtin_runner/range_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ mod tests {
fn get_air_private_input() {
let builtin: BuiltinRunner = RangeCheckBuiltinRunner::new(None, 4, true).into();

let memory = memory![((0, 0), 0), ((0, 1), 1), ((0, 2), 2), ((0, 3), 3)];
let memory = memory![((0, 0), 0), ((0, 1), 1), ((0, 2), 2)];
assert_eq!(
builtin.air_private_input(&memory),
(vec![
Expand Down

0 comments on commit 614938f

Please sign in to comment.