Skip to content

Commit

Permalink
Update src/pluto_eris/fp2.rs
Browse files Browse the repository at this point in the history
Co-authored-by: adria0.eth <[email protected]>
  • Loading branch information
davidnevadoc and adria0 authored Sep 25, 2024
1 parent fa3bb0e commit 5dfd7c5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/pluto_eris/fp2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,7 @@ mod test {
fn test_fp2_mul_nonresidue() {
use rand::SeedableRng;
use rand_xorshift::XorShiftRng;
let mut rng = XorShiftRng::from_seed([
0x59, 0x62, 0xbe, 0x5d, 0x76, 0x3d, 0x31, 0x8d, 0x17, 0xdb, 0x37, 0x32, 0x54, 0x06,
0xbc, 0xe5,
]);
let mut rng = XorShiftRng::from_seed(crate::tests::SEED);
for _ in 0..1000 {
let mut a = Fp2::random(&mut rng);
let mut b = a;
Expand Down

0 comments on commit 5dfd7c5

Please sign in to comment.