From 0421c6049b4dab7337eb3567abf981b2f0adc526 Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Wed, 13 Mar 2019 10:19:33 +0100 Subject: [PATCH] Fix forgotten capitalization --- src/librustc/session/config.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 6a668099e18..56f9a708fee 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -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()); -- 2.44.0