Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
gswirski committed Sep 24, 2023
1 parent 93c52ba commit 1898547
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,7 @@ fn build_target(cargo_options: &CargoOpts, workspace: &Workspace) -> Result<Path
result
.tests
.iter()
.find(|unit_output| {
println!("testing output {}", unit_output.unit.target.name());
unit_output.unit.target.name() == test
})
.find(|unit_output| { unit_output.unit.target.name() == test })
.map(|unit_output| unit_output.path.clone())
.ok_or_else(|| anyhow!("no test '{}'", test))
} else {
Expand Down

0 comments on commit 1898547

Please sign in to comment.