Skip to content

Commit 80a1000

Browse files
author
illuzen
committed
formatting issue
1 parent c6b921e commit 80a1000

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

field/src/prime_field_testing.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ macro_rules! test_prime_field_arithmetic {
160160
fn subtraction_double_wraparound() {
161161
type F = $field;
162162

163-
let (a, b) = (F::from_canonical_u64(F::ORDER.div_ceil(2u64)), F::TWO); let x = a * b;
163+
let (a, b) = (F::from_canonical_u64(F::ORDER.div_ceil(2u64)), F::TWO);
164+
let x = a * b;
164165
assert_eq!(x, F::ONE);
165166
assert_eq!(F::ZERO - x, F::NEG_ONE);
166167
}

0 commit comments

Comments
 (0)