Skip to content

Commit 70a423e

Browse files
committed
Fix formatting
1 parent 1f05730 commit 70a423e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tests/testsuite/rustc.rs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ fn rustc_with_print_cfg_rustflags_env_var() {
582582
.build();
583583

584584
p.cargo("rustc -Z unstable-options --target x86_64-pc-windows-msvc --print cfg")
585-
.masquerade_as_nightly_cargo()
585+
.masquerade_as_nightly_cargo()
586586
.env("RUSTFLAGS", "-C target-feature=+crt-static")
587587
.with_stdout_contains(
588588
"\
@@ -624,15 +624,18 @@ windows
624624
fn rustc_with_print_cfg_config_toml() {
625625
let p = project()
626626
.file("Cargo.toml", &basic_bin_manifest("foo"))
627-
.file(".cargo/config.toml", r#"
627+
.file(
628+
".cargo/config.toml",
629+
r#"
628630
[target.x86_64-pc-windows-msvc]
629631
rustflags = ["-C", "target-feature=+crt-static"]
630-
"#)
632+
"#,
633+
)
631634
.file("src/main.rs", r#"fn main() {} "#)
632635
.build();
633636

634637
p.cargo("rustc -Z unstable-options --target x86_64-pc-windows-msvc --print cfg")
635-
.masquerade_as_nightly_cargo()
638+
.masquerade_as_nightly_cargo()
636639
.env("RUSTFLAGS", "-C target-feature=+crt-static")
637640
.with_stdout_contains(
638641
"\

0 commit comments

Comments
 (0)