Skip to content

Commit 394b95f

Browse files
committed
Fix test
1 parent 2ccc82e commit 394b95f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2793,7 +2793,7 @@ mod tests {
27932793
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
27942794
opts.debugging_opts.dump_mir = Some(String::from("abc"));
27952795
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
2796-
opts.debugging_opts.dump_mir_dir = Some(String::from("abc"));
2796+
opts.debugging_opts.dump_mir_dir = String::from("abc");
27972797
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
27982798
opts.debugging_opts.dump_mir_graphviz = true;
27992799
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());

0 commit comments

Comments
 (0)