about summary refs log tree commit diff
path: root/src/bootstrap/setup
diff options
context:
space:
mode:
authorKittyBorgX <krishnaramasimha12@gmail.com>2023-03-01 22:58:05 +0530
committerKittyBorgX <krishnaramasimha12@gmail.com>2023-03-01 22:58:05 +0530
commita90e7d465806ee772f726818a0e35ab9539fb8b7 (patch)
treead124eb5722a655c41f189761c31eae91a398711 /src/bootstrap/setup
parent5423745db8b434fcde54888b35f518f00cce00e4 (diff)
downloadrust-a90e7d465806ee772f726818a0e35ab9539fb8b7.tar.gz
rust-a90e7d465806ee772f726818a0e35ab9539fb8b7.zip
Rename `src/etc/vscode_settings.json` to `rust_analyzer_settings.json`
Diffstat (limited to 'src/bootstrap/setup')
-rw-r--r--src/bootstrap/setup/tests.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/setup/tests.rs b/src/bootstrap/setup/tests.rs
index dcf9d18e632..0fe6e4a4644 100644
--- a/src/bootstrap/setup/tests.rs
+++ b/src/bootstrap/setup/tests.rs
@@ -1,14 +1,14 @@
-use super::{SETTINGS_HASHES, VSCODE_SETTINGS};
+use super::{RUST_ANALYZER_SETTINGS, SETTINGS_HASHES};
 use sha2::Digest;
 
 #[test]
 fn check_matching_settings_hash() {
     let mut hasher = sha2::Sha256::new();
-    hasher.update(&VSCODE_SETTINGS);
+    hasher.update(&RUST_ANALYZER_SETTINGS);
     let hash = hex::encode(hasher.finalize().as_slice());
     assert_eq!(
         &hash,
         SETTINGS_HASHES.last().unwrap(),
-        "Update `SETTINGS_HASHES` with the new hash of `src/etc/vscode_settings.json`"
+        "Update `SETTINGS_HASHES` with the new hash of `src/etc/rust_analyzer_settings.json`"
     );
 }