Skip to content

Commit

Permalink
Fix forgotten capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Apr 2, 2019
1 parent 3be13c4 commit 0421c60
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/librustc/session/config.rs
Expand Up @@ -2940,15 +2940,15 @@ mod tests {
.push(SearchPath::from_cli_opt("all=mno", JSON));

v4.search_paths
.push(SearchPath::from_cli_opt("all=mno", json));
.push(SearchPath::from_cli_opt("all=mno", JSON));
v4.search_paths
.push(SearchPath::from_cli_opt("native=abc", json));
.push(SearchPath::from_cli_opt("native=abc", JSON));
v4.search_paths
.push(SearchPath::from_cli_opt("crate=def", json));
.push(SearchPath::from_cli_opt("crate=def", JSON));
v4.search_paths
.push(SearchPath::from_cli_opt("dependency=ghi", json));
.push(SearchPath::from_cli_opt("dependency=ghi", JSON));
v4.search_paths
.push(SearchPath::from_cli_opt("framework=jkl", json));
.push(SearchPath::from_cli_opt("framework=jkl", JSON));

assert!(v1.dep_tracking_hash() == v2.dep_tracking_hash());
assert!(v1.dep_tracking_hash() == v3.dep_tracking_hash());
Expand Down

0 comments on commit 0421c60

Please sign in to comment.