Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
orkunkilic committed Feb 2, 2024
1 parent 96fd5b6 commit 336543f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/circuit/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ mod tests {
let b2 = number_to_bool_array(a2, 64);

let o = circuit.evaluate(vec![b1, b2]);
let output = bool_array_to_number(o.get(0).unwrap().to_vec());
let output = bool_array_to_number(o.first().unwrap().to_vec());
assert_eq!(output, a1 + a2);
}
}

0 comments on commit 336543f

Please sign in to comment.