diff options
Diffstat (limited to 'crates/server/tests/heavy_tests')
-rw-r--r-- | crates/server/tests/heavy_tests/support.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/server/tests/heavy_tests/support.rs b/crates/server/tests/heavy_tests/support.rs index 006926216..76cbd56ea 100644 --- a/crates/server/tests/heavy_tests/support.rs +++ b/crates/server/tests/heavy_tests/support.rs | |||
@@ -83,7 +83,7 @@ impl Server { | |||
83 | }; | 83 | }; |
84 | for (path, text) in files { | 84 | for (path, text) in files { |
85 | res.send_notification(RawNotification::new::<DidOpenTextDocument>( | 85 | res.send_notification(RawNotification::new::<DidOpenTextDocument>( |
86 | DidOpenTextDocumentParams { | 86 | &DidOpenTextDocumentParams { |
87 | text_document: TextDocumentItem { | 87 | text_document: TextDocumentItem { |
88 | uri: Url::from_file_path(path).unwrap(), | 88 | uri: Url::from_file_path(path).unwrap(), |
89 | language_id: "rust".to_string(), | 89 | language_id: "rust".to_string(), |
@@ -149,7 +149,7 @@ impl Server { | |||
149 | R: Request, | 149 | R: Request, |
150 | R::Params: Serialize, | 150 | R::Params: Serialize, |
151 | { | 151 | { |
152 | let r = RawRequest::new::<R>(id, params); | 152 | let r = RawRequest::new::<R>(id, ¶ms); |
153 | self.sender.as_ref() | 153 | self.sender.as_ref() |
154 | .unwrap() | 154 | .unwrap() |
155 | .send(RawMessage::Request(r)); | 155 | .send(RawMessage::Request(r)); |