tzinfos isn't Vec<String>

pull/1/head
Bradlee Speice 2018-06-07 23:17:23 -04:00
parent 78b4d95b16
commit 3a17e14d42
3 changed files with 8 additions and 7 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/target
**/*.rs.bk
Cargo.lock
.vscode

View File

@ -763,7 +763,7 @@ impl Parser {
fuzzy_with_tokens: bool,
default: Option<&NaiveDateTime>,
ignoretz: bool,
tzinfos: Vec<String>,
tzinfos: HashMap<String, i32>,
) -> Result<(NaiveDateTime, Option<FixedOffset>, Option<Vec<String>>), ParseError> {
let default_date = default.unwrap_or(&Local::now().naive_local()).date();
@ -1285,7 +1285,7 @@ fn ljust(s: &str, chars: usize, replace: char) -> String {
}
pub fn parse(timestr: &str) -> ParseResult<(NaiveDateTime, Option<FixedOffset>)> {
let res = Parser::default().parse(timestr, None, None, false, false, None, false, vec![])?;
let res = Parser::default().parse(timestr, None, None, false, false, None, false, HashMap::new())?;
Ok((res.0, res.1))
}

View File

@ -76,7 +76,7 @@ fn parse_and_assert(
fuzzy_with_tokens: bool,
default: Option<&NaiveDateTime>,
ignoretz: bool,
tzinfos: Vec<String>,
tzinfos: HashMap<String, i32>,
) {
let default_pydate = datetime
@ -212,7 +212,7 @@ macro_rules! test_parse {
false,
Some(default_rsdate),
false,
vec![]
HashMap::new()
);
};
}
@ -234,7 +234,7 @@ macro_rules! test_parse_yearfirst {
false,
Some(default_rsdate),
false,
vec![]
HashMap::new()
);
};
}
@ -256,7 +256,7 @@ macro_rules! test_parse_dayfirst {
false,
Some(default_rsdate),
false,
vec![]
HashMap::new()
);
};
}
@ -278,7 +278,7 @@ macro_rules! test_parse_ignoretz {
false,
Some(default_rsdate),
true,
vec![]
HashMap::new()
);
};
}