Skip to content

Commit 0fdaa9f

Browse files
committed
Fix lint issue in issue84 unittest.
1 parent 73c3353 commit 0fdaa9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lexical-write-float/tests/algorithm_tests.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ fn floor_log10_pow2_minus_log10_4_over_3_test() {
9393

9494
#[test]
9595
fn issue84_test() {
96-
let (hi, lo) = algorithm::umul192_lower128(15966911296221875, 0xcccccccccccccccc, 0xcccccccccccccccd);
96+
let (hi, lo) =
97+
algorithm::umul192_lower128(15966911296221875, 0xcccccccccccccccc, 0xcccccccccccccccd);
9798
assert_eq!(hi, 0);
9899
assert_eq!(lo, 3193382259244375);
99100
}

0 commit comments

Comments
 (0)