Skip to content

Commit 92a7243

Browse files
committed
clippy
1 parent e90bb7e commit 92a7243

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modint.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,8 +1118,8 @@ mod tests {
11181118
#[test]
11191119
fn static_modint_binop_coercion() {
11201120
let f = ModInt1000000007::new;
1121-
let a = 10293812usize;
1122-
let b = 9083240982usize;
1121+
let a = 10_293_812_usize;
1122+
let b = 9_083_240_982_usize;
11231123
assert_eq!(f(a) + f(b), f(a) + b);
11241124
assert_eq!(f(a) - f(b), f(a) - b);
11251125
assert_eq!(f(a) * f(b), f(a) * b);

0 commit comments

Comments
 (0)