This commit is contained in:
Ryan Geary 2019-10-24 21:05:09 -04:00
parent f662219407
commit c729ad3f00

View file

@ -84,7 +84,6 @@ impl Choice {
}
return slices;
}
}
@ -222,10 +221,8 @@ mod tests {
let config = Config::from_iter(vec!["choose", "3:1"]);
assert_eq!(
vec!["pretty", "is", "lang"],
config.opt.choice[0].get_choice_slice(
&String::from("rust lang is pretty darn cool"),
&config
)
config.opt.choice[0]
.get_choice_slice(&String::from("rust lang is pretty darn cool"), &config)
);
}