diff options
author | Aleksey Kladov <[email protected]> | 2019-05-29 20:14:06 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-05-29 20:14:06 +0100 |
commit | 9304cb026309d68f2b5a6326e74f836bc79f88f5 (patch) | |
tree | 60388b0a2ee245f1874e8a7db75fca3ad454a68d /crates/ra_lsp_server/tests/heavy_tests | |
parent | 6bcc1b8b9e9ff90a5c5442dce230dba5995ca5b5 (diff) |
bump timeout for CI
Diffstat (limited to 'crates/ra_lsp_server/tests/heavy_tests')
-rw-r--r-- | crates/ra_lsp_server/tests/heavy_tests/support.rs | 2 |
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 | ||
229 | fn recv_timeout(receiver: &Receiver<RawMessage>) -> Option<RawMessage> { | 229 | fn 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"), |