diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-05-29 20:18:57 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-05-29 20:18:57 +0100 |
commit | 8c3cd8f121d4306732423d1c8804d54e36bd706a (patch) | |
tree | fa887bc9a274813869d41f36cb5e48a4c1bd3ef9 /crates/ra_lsp_server/tests/heavy_tests | |
parent | 7e9c5e32e5f7819b340fc2adb63b2ffeeb2627cf (diff) | |
parent | 9304cb026309d68f2b5a6326e74f836bc79f88f5 (diff) |
Merge #1346
1346: bump timeout for CI r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
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"), |