Skip to content

Commit

Permalink
Merge pull request #41 from CXWorks/master
Browse files Browse the repository at this point in the history
Add missing unit test for i128 positive
  • Loading branch information
dtolnay authored Dec 9, 2023
2 parents 0d040f4 + 84bffa9 commit adecb79
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ test! {
test_u128_0(0u128, "0")
test_u128_max(u128::max_value(), "340282366920938463463374607431768211455")
test_i128_min(i128::min_value(), "-170141183460469231731687303715884105728")
test_i128_max(std::i128::MAX, "170141183460469231731687303715884105727")
}

0 comments on commit adecb79

Please sign in to comment.