diff --git a/src/pasta/fields/fp.rs b/src/pasta/fields/fp.rs index 47cc64e..2cba5c3 100644 --- a/src/pasta/fields/fp.rs +++ b/src/pasta/fields/fp.rs @@ -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"))] diff --git a/src/pasta/fields/fq.rs b/src/pasta/fields/fq.rs index 0c36f9d..3ffbc32 100644 --- a/src/pasta/fields/fq.rs +++ b/src/pasta/fields/fq.rs @@ -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"))]