Skip to content

Commit 7dd0e38

Browse files
committed
tidy up
1 parent 99e5699 commit 7dd0e38

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/tools/compiletest/src/runtest.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1574,7 +1574,10 @@ impl<'test> TestCx<'test> {
15741574

15751575
for aux_crate in &self.props.aux_crates {
15761576
rustc.arg("--extern");
1577-
rustc.arg(format!("{}={}/lib{}", aux_crate.key, aux_dir.display(), &aux_crate.value.replace(".rs", ".so").replace("-","_")));
1577+
rustc.arg(format!("{}={}/lib{}",
1578+
aux_crate.key,
1579+
aux_dir.display(),
1580+
&aux_crate.value.replace(".rs", ".so").replace("-","_")));
15781581
}
15791582

15801583
self.compose_and_run(

0 commit comments

Comments
 (0)