fix(test): update args module tests

This commit is contained in:
Orhun Parmaksız 2022-01-28 14:31:54 +03:00
parent 7f6747607f
commit 2967a5269f
No known key found for this signature in database
GPG key ID: F83424824B3E4B90

View file

@ -99,6 +99,7 @@ mod tests {
}
let args = Args::parse(vec![
String::new(),
String::from("-t"),
String::from("1000"),
String::from("-D"),
@ -106,7 +107,7 @@ mod tests {
String::from("--no-docs"),
String::from("-s"),
String::from("vm"),
String::from("q"),
String::from("-q"),
String::from("test"),
])
.unwrap();