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 d458cdc commit 1f176e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ff/src/biginteger/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ fn biginteger_shl<B: BigInteger>() {
// Test null bits
let a = B::rand(&mut rng);
let b = a << 3;
assert!(!b.get_bit(0));
assert!(!b.get_bit(1));
assert!(!b.get_bit(2));
assert_eq!(b.get_bit(0), false);
assert_eq!(b.get_bit(1), false);
assert_eq!(b.get_bit(2), false);
}

// Test for BigInt's bitwise operations
Expand Down

0 comments on commit 1f176e3

Please sign in to comment.