Skip to content

Commit

Permalink
Fix unit test after pgo-use change.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwoerister committed May 22, 2019
1 parent 51463d0 commit b3c5cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/session/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3212,7 +3212,7 @@ mod tests {
assert_ne!(reference.dep_tracking_hash(), opts.dep_tracking_hash());

opts = reference.clone();
opts.debugging_opts.pgo_use = String::from("abc");
opts.debugging_opts.pgo_use = Some(PathBuf::from("abc"));
assert_ne!(reference.dep_tracking_hash(), opts.dep_tracking_hash());

opts = reference.clone();
Expand Down

0 comments on commit b3c5cdd

Please sign in to comment.