We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7e9ebd commit 0b3e046Copy full SHA for 0b3e046
tests/full.rs
@@ -46,7 +46,11 @@ mod full {
46
};
47
48
let out_file: PathBuf = format!("{}.{}", out_file.display(), file_ext).into();
49
- assert!(out_file.exists(), "file `{}` does not exist", out_file.display());
+ assert!(
50
+ out_file.exists(),
51
+ "file `{}` does not exist",
52
+ out_file.display()
53
+ );
54
55
if let Some(path) = env::var_os("PATH") {
56
let mut paths = env::split_paths(&path).collect::<Vec<_>>();
@@ -94,8 +98,7 @@ mod full {
94
98
.env("RUST_BACKTRACE", "full")
95
99
.stdin(Stdio::null())
96
100
.stdout(out_pipe)
97
- .stderr(err_pipe)
- ;
101
+ .stderr(err_pipe);
102
103
if let Ok(target) = std::env::var("TEST_TARGET") {
104
cmd.args(&["--target", &target]);
0 commit comments