cargo fmt

This commit is contained in:
Sean Bowe 2020-12-13 10:37:32 -07:00
parent 7c0e56a44e
commit c25b7e7d09
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
2 changed files with 8 additions and 2 deletions

View File

@ -834,7 +834,10 @@ fn test_inv_2() {
#[test]
fn test_delta() {
assert_eq!(Fp::DELTA, GENERATOR.pow(&[1u64 << Fp::S, 0, 0, 0]));
assert_eq!(Fp::DELTA, Fp::multiplicative_generator().pow(&[1u64 << Fp::S, 0, 0, 0]));
assert_eq!(
Fp::DELTA,
Fp::multiplicative_generator().pow(&[1u64 << Fp::S, 0, 0, 0])
);
}
#[cfg(not(target_pointer_width = "64"))]

View File

@ -833,7 +833,10 @@ fn test_inv_2() {
#[test]
fn test_delta() {
assert_eq!(Fq::DELTA, GENERATOR.pow(&[1u64 << Fq::S, 0, 0, 0]));
assert_eq!(Fq::DELTA, Fq::multiplicative_generator().pow(&[1u64 << Fq::S, 0, 0, 0]));
assert_eq!(
Fq::DELTA,
Fq::multiplicative_generator().pow(&[1u64 << Fq::S, 0, 0, 0])
);
}
#[cfg(not(target_pointer_width = "64"))]