Skip to content

Commit

Permalink
Touch up PR 1997
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Mar 6, 2021
1 parent d91075c commit 697b082
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion serde/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fn main() {
println!("cargo:rustc-cfg=serde_derive");
}

// TryFrom, Atomic types, non-zero signed integers, and `SystemTime::checked_add`
// TryFrom, Atomic types, non-zero signed integers, and SystemTime::checked_add
// stabilized in Rust 1.34:
// https://blog.rust-lang.org/2019/04/11/Rust-1.34.0.html#tryfrom-and-tryinto
// https://blog.rust-lang.org/2019/04/11/Rust-1.34.0.html#library-stabilizations
Expand Down
2 changes: 1 addition & 1 deletion serde/src/de/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2130,7 +2130,7 @@ impl<'de> Deserialize<'de> for SystemTime {
#[cfg(systemtime_checked_add)]
let ret = UNIX_EPOCH
.checked_add(duration)
.ok_or(D::Error::custom("overflow deserializing SystemTime"));
.ok_or_else(|| D::Error::custom("overflow deserializing SystemTime"));
#[cfg(not(systemtime_checked_add))]
let ret = Ok(UNIX_EPOCH + duration);
ret
Expand Down
9 changes: 0 additions & 9 deletions test_suite/tests/test_de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,6 @@ macro_rules! declare_tests {
}

macro_rules! declare_error_tests {
($($name:ident<$target:ty> { $tokens:expr, $expected:expr, })+) => {
$(
#[test]
fn $name() {
assert_de_tokens_error::<$target>($tokens, $expected);
}
)+
};

($(
$(#[$cfg:meta])*
$name:ident<$target:ty> { $tokens:expr, $expected:expr, }
Expand Down
5 changes: 4 additions & 1 deletion test_suite/tests/test_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1903,7 +1903,10 @@ fn test_internally_tagged_newtype_variant_containing_unit_struct() {
assert_de_tokens(
&Message::Info(Info),
&[
Token::Struct { name: "Message", len: 1 },
Token::Struct {
name: "Message",
len: 1,
},
Token::Str("topic"),
Token::Str("Info"),
Token::StructEnd,
Expand Down

0 comments on commit 697b082

Please sign in to comment.