mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-01 12:24:29 +00:00
fix clippy::useless-conversion
This commit is contained in:
parent
d51ecf8a41
commit
06770e0c9a
1 changed files with 1 additions and 1 deletions
|
|
@ -255,7 +255,7 @@ pub(crate) fn handle_run_test(
|
|||
}
|
||||
})
|
||||
.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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue