Skip to content

Commit 507ac76

Browse files
committed
Lint
1 parent a5bc4ea commit 507ac76

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

math/src/field/fields/montgomery_backed_prime_fields.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,10 @@ mod tests_u256_prime_fields {
11531153
fn creating_a_field_element_from_hex_too_big_errors() {
11541154
let a = U256FP1Element::from_hex(&"f".repeat(65));
11551155
assert!(a.is_err());
1156-
assert_eq!(a.unwrap_err(), crate::errors::CreationError::HexStringIsTooBig)
1156+
assert_eq!(
1157+
a.unwrap_err(),
1158+
crate::errors::CreationError::HexStringIsTooBig
1159+
)
11571160
}
11581161

11591162
#[test]

0 commit comments

Comments
 (0)