Skip to content

Commit 0b3e046

Browse files
committed
Formatting
1 parent b7e9ebd commit 0b3e046

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/full.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ mod full {
4646
};
4747

4848
let out_file: PathBuf = format!("{}.{}", out_file.display(), file_ext).into();
49-
assert!(out_file.exists(), "file `{}` does not exist", out_file.display());
49+
assert!(
50+
out_file.exists(),
51+
"file `{}` does not exist",
52+
out_file.display()
53+
);
5054

5155
if let Some(path) = env::var_os("PATH") {
5256
let mut paths = env::split_paths(&path).collect::<Vec<_>>();
@@ -94,8 +98,7 @@ mod full {
9498
.env("RUST_BACKTRACE", "full")
9599
.stdin(Stdio::null())
96100
.stdout(out_pipe)
97-
.stderr(err_pipe)
98-
;
101+
.stderr(err_pipe);
99102

100103
if let Ok(target) = std::env::var("TEST_TARGET") {
101104
cmd.args(&["--target", &target]);

0 commit comments

Comments
 (0)