From df4b5890fd59ec1031fbbc9ff6a644db99225621 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 15 Sep 2021 18:06:21 -0700 Subject: [PATCH] Run fewer iterations of the gpui list test by default --- gpui/src/elements/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpui/src/elements/list.rs b/gpui/src/elements/list.rs index 1a86e2935c..34b8427229 100644 --- a/gpui/src/elements/list.rs +++ b/gpui/src/elements/list.rs @@ -654,7 +654,7 @@ mod tests { assert_eq!(state.0.borrow().scroll_top(&logical_scroll_top), 114.); } - #[crate::test(self, iterations = 10000, seed = 0)] + #[crate::test(self, iterations = 10, seed = 0)] fn test_random(cx: &mut crate::MutableAppContext, mut rng: StdRng) { let operations = env::var("OPERATIONS") .map(|i| i.parse().expect("invalid `OPERATIONS` variable"))