We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 878eff1 commit 7cab8f7Copy full SHA for 7cab8f7
src/bootstrap/config/tests.rs
@@ -181,8 +181,6 @@ fn profile_user_dist() {
181
182
#[test]
183
fn rust_optimize() {
184
- let parse = |s| Config::parse_inner(&["check".to_owned()], |&_| toml::from_str(s).unwrap());
185
-
186
assert_eq!(parse("").rust_optimize.is_release(), true);
187
assert_eq!(parse("rust.optimize = false").rust_optimize.is_release(), false);
188
assert_eq!(parse("rust.optimize = true").rust_optimize.is_release(), true);
@@ -193,7 +191,5 @@ fn rust_optimize() {
193
191
194
192
#[should_panic]
195
fn invalid_rust_optimize() {
196
- Config::parse_inner(&["check".to_owned()], |&_| {
197
- toml::from_str("rust.optimize = \"a\"").unwrap()
198
- });
+ parse("rust.optimize = \"a\"");
199
}
0 commit comments