fix CI error

This commit is contained in:
cxworks 2023-12-08 20:21:58 -05:00
parent cefacdbb27
commit 84bffa9c1e
1 changed files with 1 additions and 1 deletions

View File

@ -26,5 +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(i128::MAX, "170141183460469231731687303715884105727")
test_i128_max(std::i128::MAX, "170141183460469231731687303715884105727")
}