]> git.lizzy.rs Git - rust.git/commitdiff
Fix forgotten capitalization
authorOliver Scherer <github35764891676564198441@oli-obk.de>
Wed, 13 Mar 2019 09:19:33 +0000 (10:19 +0100)
committerOliver Scherer <github35764891676564198441@oli-obk.de>
Tue, 2 Apr 2019 14:14:59 +0000 (16:14 +0200)
src/librustc/session/config.rs

index 6a668099e18561a0d5dc147927617485ae73d56b..56f9a708fee656c7b3fc8304f34cdab1d1df16a0 100644 (file)
@@ -2940,15 +2940,15 @@ fn test_search_paths_tracking_hash_different_order() {
             .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());