aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/tests/heavy_tests/support.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/tests/heavy_tests/support.rs')
-rw-r--r--crates/ra_lsp_server/tests/heavy_tests/support.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/tests/heavy_tests/support.rs b/crates/ra_lsp_server/tests/heavy_tests/support.rs
index 729067395..f952a03a3 100644
--- a/crates/ra_lsp_server/tests/heavy_tests/support.rs
+++ b/crates/ra_lsp_server/tests/heavy_tests/support.rs
@@ -227,7 +227,7 @@ impl Drop for Server {
227} 227}
228 228
229fn recv_timeout(receiver: &Receiver<RawMessage>) -> Option<RawMessage> { 229fn recv_timeout(receiver: &Receiver<RawMessage>) -> Option<RawMessage> {
230 let timeout = Duration::from_secs(50); 230 let timeout = Duration::from_secs(120);
231 select! { 231 select! {
232 recv(receiver) -> msg => msg.ok(), 232 recv(receiver) -> msg => msg.ok(),
233 recv(after(timeout)) -> _ => panic!("timed out"), 233 recv(after(timeout)) -> _ => panic!("timed out"),