mirror of
https://github.com/simonask/libyaml-safer
synced 2024-11-21 19:03:11 +00:00
Resolve needless_borrow pedantic clippy lint in test
error: the borrowed expression implements the required traits --> tests/data/lib.rs:36:31 | 36 | for entry in fs::read_dir(&yaml_test_suite).unwrap() { | ^^^^^^^^^^^^^^^^ help: change this to: `yaml_test_suite` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `-D clippy::needless-borrow` implied by `-D clippy::all`
This commit is contained in:
parent
447a4caa09
commit
09ae09301c
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ fn test(ignorelist: &str, check: fn(&Path) -> bool) -> TokenStream {
|
|||
|
||||
let mut ids = Map::new();
|
||||
let yaml_test_suite = tests_dir.join("data").join("yaml-test-suite");
|
||||
for entry in fs::read_dir(&yaml_test_suite).unwrap() {
|
||||
for entry in fs::read_dir(yaml_test_suite).unwrap() {
|
||||
let entry = entry.unwrap();
|
||||
if !entry.file_type().unwrap().is_dir() {
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue