aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2021-03-01 08:12:42 +0000
committerDániel Buga <[email protected]>2021-03-01 08:12:42 +0000
commitcb39f2df9457ea372a5f870a3274b341a8f41c7f (patch)
treee018d3aae6d5a8e3b5df0717b6c78c0227c0239c /crates/rust-analyzer
parent2f7b03b01c4379e070df2db96e94c145286cd7ea (diff)
Clean up unused field warning
Diffstat (limited to 'crates/rust-analyzer')
-rw-r--r--crates/rust-analyzer/tests/rust-analyzer/main.rs2
-rw-r--r--crates/rust-analyzer/tests/rust-analyzer/support.rs14
2 files changed, 1 insertions, 15 deletions
diff --git a/crates/rust-analyzer/tests/rust-analyzer/main.rs b/crates/rust-analyzer/tests/rust-analyzer/main.rs
index 80bde29b9..391a0b60d 100644
--- a/crates/rust-analyzer/tests/rust-analyzer/main.rs
+++ b/crates/rust-analyzer/tests/rust-analyzer/main.rs
@@ -54,7 +54,6 @@ version = "0.0.0"
54use std::collections::Spam; 54use std::collections::Spam;
55"#, 55"#,
56 ) 56 )
57 .with_sysroot(true)
58 .server() 57 .server()
59 .wait_until_workspace_is_loaded(); 58 .wait_until_workspace_is_loaded();
60 59
@@ -451,7 +450,6 @@ fn main() {{}}
451"#, 450"#,
452 librs, libs 451 librs, libs
453 )) 452 ))
454 .with_sysroot(true)
455 .server() 453 .server()
456 .wait_until_workspace_is_loaded(); 454 .wait_until_workspace_is_loaded();
457 455
diff --git a/crates/rust-analyzer/tests/rust-analyzer/support.rs b/crates/rust-analyzer/tests/rust-analyzer/support.rs
index 453ce4fa8..726d555e4 100644
--- a/crates/rust-analyzer/tests/rust-analyzer/support.rs
+++ b/crates/rust-analyzer/tests/rust-analyzer/support.rs
@@ -20,7 +20,6 @@ use crate::testdir::TestDir;
20 20
21pub(crate) struct Project<'a> { 21pub(crate) struct Project<'a> {
22 fixture: &'a str, 22 fixture: &'a str,
23 with_sysroot: bool,
24 tmp_dir: Option<TestDir>, 23 tmp_dir: Option<TestDir>,
25 roots: Vec<PathBuf>, 24 roots: Vec<PathBuf>,
26 config: serde_json::Value, 25 config: serde_json::Value,
@@ -28,13 +27,7 @@ pub(crate) struct Project<'a> {
28 27
29impl<'a> Project<'a> { 28impl<'a> Project<'a> {
30 pub(crate) fn with_fixture(fixture: &str) -> Project { 29 pub(crate) fn with_fixture(fixture: &str) -> Project {
31 Project { 30 Project { fixture, tmp_dir: None, roots: vec![], config: serde_json::Value::Null }
32 fixture,
33 tmp_dir: None,
34 roots: vec![],
35 with_sysroot: false,
36 config: serde_json::Value::Null,
37 }
38 } 31 }
39 32
40 pub(crate) fn tmp_dir(mut self, tmp_dir: TestDir) -> Project<'a> { 33 pub(crate) fn tmp_dir(mut self, tmp_dir: TestDir) -> Project<'a> {
@@ -47,11 +40,6 @@ impl<'a> Project<'a> {
47 self 40 self
48 } 41 }
49 42
50 pub(crate) fn with_sysroot(mut self, yes: bool) -> Project<'a> {
51 self.with_sysroot = yes;
52 self
53 }
54
55 pub(crate) fn with_config(mut self, config: serde_json::Value) -> Project<'a> { 43 pub(crate) fn with_config(mut self, config: serde_json::Value) -> Project<'a> {
56 self.config = config; 44 self.config = config;
57 self 45 self