We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c2b375 commit ee38d02Copy full SHA for ee38d02
tests/rustfmt/main.rs
@@ -92,11 +92,17 @@ fn inline_config() {
92
93
// multiple overriding invocations
94
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")
+ &[
+ "--print-config",
+ "current",
+ ".",
+ "--config",
+ "color=never,edition=2018",
101
102
+ "color=always,format_strings=true"
103
+ ],
104
+ contains("color = \"Always\"")
105
+ && contains("edition = \"2018\"")
106
+ && contains("format_strings = true")
107
);
108
}
0 commit comments