diff options
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 2 | ||||
-rw-r--r-- | crates/ra_lsp_server/tests/heavy_tests/main.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index 60f13267c..1edb9fae4 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -427,7 +427,7 @@ impl<'a> PoolDispatcher<'a> { | |||
427 | RawResponse::err( | 427 | RawResponse::err( |
428 | id, | 428 | id, |
429 | ErrorCode::ContentModified as i32, | 429 | ErrorCode::ContentModified as i32, |
430 | format!("content modified: {}", e), | 430 | format!("content modified: {:?}", e), |
431 | ) | 431 | ) |
432 | } else { | 432 | } else { |
433 | RawResponse::err( | 433 | RawResponse::err( |
diff --git a/crates/ra_lsp_server/tests/heavy_tests/main.rs b/crates/ra_lsp_server/tests/heavy_tests/main.rs index 029a55d40..1f5cc5e8b 100644 --- a/crates/ra_lsp_server/tests/heavy_tests/main.rs +++ b/crates/ra_lsp_server/tests/heavy_tests/main.rs | |||
@@ -141,7 +141,7 @@ fn main() {} | |||
141 | server.request::<CodeActionRequest>( | 141 | server.request::<CodeActionRequest>( |
142 | CodeActionParams { | 142 | CodeActionParams { |
143 | text_document: server.doc_id("src/lib.rs"), | 143 | text_document: server.doc_id("src/lib.rs"), |
144 | range: Range::new(Position::new(0, 0), Position::new(0, 7)), | 144 | range: Range::new(Position::new(0, 4), Position::new(0, 7)), |
145 | context: empty_context(), | 145 | context: empty_context(), |
146 | }, | 146 | }, |
147 | json!([ | 147 | json!([ |
@@ -168,7 +168,7 @@ fn main() {} | |||
168 | server.request::<CodeActionRequest>( | 168 | server.request::<CodeActionRequest>( |
169 | CodeActionParams { | 169 | CodeActionParams { |
170 | text_document: server.doc_id("src/lib.rs"), | 170 | text_document: server.doc_id("src/lib.rs"), |
171 | range: Range::new(Position::new(2, 0), Position::new(2, 7)), | 171 | range: Range::new(Position::new(2, 4), Position::new(2, 7)), |
172 | context: empty_context(), | 172 | context: empty_context(), |
173 | }, | 173 | }, |
174 | json!([]), | 174 | json!([]), |