cargo fmt

This commit is contained in:
Daniele D'Orazio 2019-06-21 16:47:34 +02:00
parent 66dbc02b05
commit 316a9f2711
2 changed files with 3 additions and 3 deletions

View file

@ -141,11 +141,11 @@ fn run_ui_toml() {
let res = run_ui_toml_tests(&config, tests);
match res {
Ok(true) => {}
Ok(true) => {},
Ok(false) => panic!("Some tests failed"),
Err(e) => {
println!("I/O failure during tests: {:?}", e);
}
},
}
}

View file

@ -46,7 +46,7 @@ fn explore_directory(dir: &Path) -> Vec<String> {
if file_stem != current_file {
missing_files.push(path.to_str().unwrap().to_string());
}
}
},
_ => continue,
};
}