Skip to content

Commit

Permalink
Update ff/src/biginteger/tests.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Pratyush Mishra <[email protected]>
  • Loading branch information
tcoratger and Pratyush authored Nov 20, 2024
1 parent 1f176e3 commit 215c1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ff/src/biginteger/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn biginteger_arithmetic_test<B: BigInteger>(a: B, b: B, zero: B, max: B) {
let mut a0_sub = a;
let borrow = a0_sub.sub_with_borrow(&zero);
assert_eq!(a0_sub, a);
assert!(!borrow);
assert_eq!(borrow, false);

// a - a = 0
let mut aa_sub = a;
Expand Down

0 comments on commit 215c1bf

Please sign in to comment.