Skip to content

Commit 7694ca1

Browse files
authored
Fix incorrect default
1 parent 7a55a00 commit 7694ca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/session/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3212,7 +3212,7 @@ mod tests {
32123212
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());
32133213

32143214
opts = reference.clone();
3215-
opts.debugging_opts.treat_err_as_bug = Some(1);
3215+
opts.debugging_opts.treat_err_as_bug = Some(0);
32163216
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());
32173217

32183218
opts = reference.clone();

0 commit comments

Comments
 (0)