Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed May 18, 2021
1 parent a0a2bcd commit 9a68fc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valuable-serde/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn test_int() {
assert_ser_eq!(u16::MAX, &[Token::U16(u16::MAX)]);
assert_ser_eq!(u32::MAX, &[Token::U32(u32::MAX)]);
assert_ser_eq!(u64::MAX, &[Token::U64(u64::MAX)]);
// serde_test doesn't have Token::I128.
// serde_test doesn't have Token::U128.
// assert_ser_eq!(u128::MAX, &[Token::U128(u128::MAX)]);
assert_ser_eq!(usize::MAX, &[Token::U64(usize::MAX as _)]);
}
Expand Down

0 comments on commit 9a68fc3

Please sign in to comment.