diff options
Diffstat (limited to 'src/xml/writer.rs')
| -rw-r--r-- | src/xml/writer.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xml/writer.rs b/src/xml/writer.rs index 77ccd87..67bb6a2 100644 --- a/src/xml/writer.rs +++ b/src/xml/writer.rs @@ -188,10 +188,9 @@ impl<W: Write> PlistEventWriter for EventWriter<W> { #[cfg(test)] mod tests { - use chrono::{TimeZone, Utc}; + use humantime::parse_rfc3339_weak; use std::io::Cursor; - use Date; use super::*; #[test] @@ -214,7 +213,7 @@ mod tests { StringValue("Data".to_owned()), DataValue(vec![0, 0, 0, 190, 0, 0, 0, 3, 0, 0, 0, 30, 0, 0, 0]), StringValue("Birthdate".to_owned()), - DateValue(Date::from_chrono(Utc.ymd(1981, 05, 16).and_hms(11, 32, 06))), + DateValue(parse_rfc3339_weak("1981-05-16 11:32:06").unwrap().into()), EndDictionary, ]; |
