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 1bc3b12 commit 9b88b5aCopy full SHA for 9b88b5a
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