Remove unneeded shorthand field pattern

This commit is contained in:
Matthias Beyer 2016-01-05 16:58:54 +01:00
parent b2f7200b38
commit 7b04d02a4a

View file

@ -178,7 +178,7 @@ mod test {
assert!(parsed.is_ok(), "Parsed is not ok: {:?}", parsed);
match parsed.ok() {
Some(FHD::Map{keys: keys}) => {
Some(FHD::Map{keys}) => {
for k in keys {
match k {
FHD::Key{name: name, value: value} => {