Skip to content

Commit ee38d02

Browse files
committed
Cargo fmt
1 parent 9c2b375 commit ee38d02

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

tests/rustfmt/main.rs

+12-6
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,17 @@ fn inline_config() {
9292

9393
// multiple overriding invocations
9494
assert_that!(
95-
&["--print-config", "current", ".",
96-
"--config", "color=never,edition=2018",
97-
"--config", "color=always,format_strings=true"],
98-
contains("color = \"Always\"") &&
99-
contains("edition = \"2018\"") &&
100-
contains("format_strings = true")
95+
&[
96+
"--print-config",
97+
"current",
98+
".",
99+
"--config",
100+
"color=never,edition=2018",
101+
"--config",
102+
"color=always,format_strings=true"
103+
],
104+
contains("color = \"Always\"")
105+
&& contains("edition = \"2018\"")
106+
&& contains("format_strings = true")
101107
);
102108
}

0 commit comments

Comments
 (0)