Skip to content

Commit 0421c60

Browse files
committed
Fix forgotten capitalization
1 parent 3be13c4 commit 0421c60

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/librustc/session/config.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2940,15 +2940,15 @@ mod tests {
29402940
.push(SearchPath::from_cli_opt("all=mno", JSON));
29412941

29422942
v4.search_paths
2943-
.push(SearchPath::from_cli_opt("all=mno", json));
2943+
.push(SearchPath::from_cli_opt("all=mno", JSON));
29442944
v4.search_paths
2945-
.push(SearchPath::from_cli_opt("native=abc", json));
2945+
.push(SearchPath::from_cli_opt("native=abc", JSON));
29462946
v4.search_paths
2947-
.push(SearchPath::from_cli_opt("crate=def", json));
2947+
.push(SearchPath::from_cli_opt("crate=def", JSON));
29482948
v4.search_paths
2949-
.push(SearchPath::from_cli_opt("dependency=ghi", json));
2949+
.push(SearchPath::from_cli_opt("dependency=ghi", JSON));
29502950
v4.search_paths
2951-
.push(SearchPath::from_cli_opt("framework=jkl", json));
2951+
.push(SearchPath::from_cli_opt("framework=jkl", JSON));
29522952

29532953
assert!(v1.dep_tracking_hash() == v2.dep_tracking_hash());
29542954
assert!(v1.dep_tracking_hash() == v3.dep_tracking_hash());

0 commit comments

Comments
 (0)