Skip to content

Commit 06770e0

Browse files
author
duncan
committed
fix clippy::useless-conversion
1 parent d51ecf8 commit 06770e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/handlers/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pub(crate) fn handle_run_test(
255255
}
256256
})
257257
.collect_vec(),
258-
None => all_test_targets(cargo).into_iter().map(|target| (target, None)).collect(),
258+
None => all_test_targets(cargo).map(|target| (target, None)).collect(),
259259
};
260260

261261
for (target, path) in tests {

0 commit comments

Comments
 (0)