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 794d4a7 commit 4bef8b4Copy full SHA for 4bef8b4
tests/cargo-fmt/main.rs
@@ -94,7 +94,11 @@ fn cargo_fmt_out_of_line_test_modules() {
94
let (stdout, _) = cargo_fmt(&args);
95
for file in expected_modified_files {
96
let path = Path::new(file).canonicalize().unwrap();
97
- assert!(stdout.contains(&format!("Diff in {}", path.display())))
+ assert!(
98
+ stdout.contains(&format!("Diff in {}", path.display())),
99
+ "{}",
100
+ path.display()
101
+ );
102
}
103
104
0 commit comments