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 27, 2019
1 parent 1de93a7 commit 48b9896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/session/config.rs
Expand Up @@ -3211,7 +3211,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 48b9896

Please sign in to comment.