We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e79c26 commit 5ea1764Copy full SHA for 5ea1764
src/tools/rust-analyzer/crates/rust-analyzer/src/handlers/request.rs
@@ -255,7 +255,7 @@ pub(crate) fn handle_run_test(
255
}
256
})
257
.collect_vec(),
258
- None => all_test_targets(cargo).into_iter().map(|target| (target, None)).collect(),
+ None => all_test_targets(cargo).map(|target| (target, None)).collect(),
259
};
260
261
for (target, path) in tests {
0 commit comments