mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 11:20:54 +00:00
fix clippy::useless-conversion
This commit is contained in:
parent
d51ecf8a41
commit
06770e0c9a
@ -255,7 +255,7 @@ pub(crate) fn handle_run_test(
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.collect_vec(),
|
.collect_vec(),
|
||||||
None => all_test_targets(cargo).into_iter().map(|target| (target, None)).collect(),
|
None => all_test_targets(cargo).map(|target| (target, None)).collect(),
|
||||||
};
|
};
|
||||||
|
|
||||||
for (target, path) in tests {
|
for (target, path) in tests {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user