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.
2 parents 1bc3b12 + 9b88b5a commit a096861Copy full SHA for a096861
src/assert.rs
@@ -61,7 +61,7 @@ impl OutputAssertExt for &mut process::Command {
61
let output = match self.output() {
62
Ok(output) => output,
63
Err(err) => {
64
- panic!("Failed to spawn {:?}: {}", self, err);
+ panic!("Failed to spawn {self:?}: {err}");
65
}
66
};
67
Assert::new(output).append_context("command", format!("{self:?}"))
0 commit comments