From cbe93af3a87caf7a5ad64f8e22536beba275d682 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Sat, 12 Feb 2022 13:01:18 +0100 Subject: [PATCH] Reduce number of iterations on `test_editing_while_guest_opens_buffer` I think this was mistakenly increased as part of some other change. --- crates/server/src/rpc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/server/src/rpc.rs b/crates/server/src/rpc.rs index 6d62a0e8d9f7bd3653ef3bb363aef1d236fe3957..e6711fb7b1f9eecec2fcedd5620689d8cc25cb42 100644 --- a/crates/server/src/rpc.rs +++ b/crates/server/src/rpc.rs @@ -1846,7 +1846,7 @@ mod tests { }); } - #[gpui::test(iterations = 100)] + #[gpui::test(iterations = 10)] async fn test_editing_while_guest_opens_buffer( mut cx_a: TestAppContext, mut cx_b: TestAppContext,