diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-10-31 18:15:21 +0100 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-10-31 18:15:21 +0100 |
commit | a600a4e88053a89670aa4bdec0800089018f5c1c (patch) | |
tree | 8911ff0dbb9ba184573630aca58a241157a4234a /tests | |
parent | 93a7edadb0b920752d17c170aa02eda1d4953134 (diff) | |
download | rust_rrule-a600a4e88053a89670aa4bdec0800089018f5c1c.zip |
removed more unwraps
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rrule.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rrule.rs b/tests/rrule.rs index 38a76e2..439f29b 100644 --- a/tests/rrule.rs +++ b/tests/rrule.rs @@ -3,8 +3,8 @@ extern crate chrono_tz; extern crate rrule; use chrono::prelude::*; -use chrono_tz::{UTC, Tz}; -use rrule::{RRule, ParsedOptions, Frequenzy}; +use chrono_tz::{Tz, UTC}; +use rrule::{Frequenzy, ParsedOptions, RRule}; #[cfg(test)] mod test { |