Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--crates/rust-analyzer/src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index 8e41b43bfe..0a1bdf49bd 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -1897,7 +1897,7 @@ impl Config {
CargoFeaturesDef::Selected(it) => it,
},
extra_args: self.extra_args(source_root).clone(),
- extra_test_bin_args: self.runnables_extraTestBinaryArgs().clone(),
+ extra_test_bin_args: self.runnables_extraTestBinaryArgs(source_root).clone(),
extra_env: self.extra_env(source_root).clone(),
target_dir: self.target_dir_from_config(source_root),
}
@@ -1954,7 +1954,7 @@ impl Config {
CargoFeaturesDef::Selected(it) => it,
},
extra_args: self.check_extra_args(source_root),
- extra_test_bin_args: self.runnables_extraTestBinaryArgs().clone(),
+ extra_test_bin_args: self.runnables_extraTestBinaryArgs(source_root).clone(),
extra_env: self.check_extra_env(source_root),
target_dir: self.target_dir_from_config(source_root),
},