Skip to content

Commit 278b94e

Browse files
committed
Fix format.
1 parent 5113de9 commit 278b94e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/compile-test.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@ fn config(mode: &str, dir: PathBuf) -> compiletest::Config {
7878
config.run_lib_path = rustc_lib_path();
7979
config.compile_lib_path = rustc_lib_path();
8080
}
81-
config.target_rustcflags = Some(format!("-L {0} -L {0}/deps -Dwarnings --sysroot {1}", host_libs().display(), rustc_sysroot_path().display()));
81+
config.target_rustcflags = Some(format!(
82+
"-L {0} -L {0}/deps -Dwarnings --sysroot {1}",
83+
host_libs().display(),
84+
rustc_sysroot_path().display()
85+
));
8286

8387
config.mode = cfg_mode;
8488
config.build_base = if rustc_test_suite().is_some() {

0 commit comments

Comments
 (0)