Skip to content

Commit abdaed2

Browse files
committed
tidy fix
1 parent f0b8da4 commit abdaed2

File tree

1 file changed

+2
-2
lines changed
  • tests/run-make/no-intermediate-extras

1 file changed

+2
-2
lines changed

tests/run-make/no-intermediate-extras/rmake.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
use run_make_support::{rustc, tmp_dir};
99

1010
fn main() {
11-
rustc().crate_type("rlib").arg("--test").input("foo.rs").run();
11+
rustc().crate_type("rlib").arg("--test").input("foo.rs").run();
1212
match fs::remove_file(tmp_dir().join("foo.bc")) {
1313
Ok(_) => {
1414
println!("An unwanted .bc file was created by run-make/no-intermediate-extras.");
1515
std::process::exit(0);
16-
},
16+
}
1717
Err(e) => {
1818
std::process::exit(1);
1919
}

0 commit comments

Comments
 (0)