Skip to content

Commit 7cab8f7

Browse files
committed
Fix broken tests
Signed-off-by: hi-rustin <rustin.liu@gmail.com>
1 parent 878eff1 commit 7cab8f7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/bootstrap/config/tests.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,6 @@ fn profile_user_dist() {
181181

182182
#[test]
183183
fn rust_optimize() {
184-
let parse = |s| Config::parse_inner(&["check".to_owned()], |&_| toml::from_str(s).unwrap());
185-
186184
assert_eq!(parse("").rust_optimize.is_release(), true);
187185
assert_eq!(parse("rust.optimize = false").rust_optimize.is_release(), false);
188186
assert_eq!(parse("rust.optimize = true").rust_optimize.is_release(), true);
@@ -193,7 +191,5 @@ fn rust_optimize() {
193191
#[test]
194192
#[should_panic]
195193
fn invalid_rust_optimize() {
196-
Config::parse_inner(&["check".to_owned()], |&_| {
197-
toml::from_str("rust.optimize = \"a\"").unwrap()
198-
});
194+
parse("rust.optimize = \"a\"");
199195
}

0 commit comments

Comments
 (0)