From bc9f361e56d5acbc8fa8d4d5a864ddf583f495c5 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sat, 14 Feb 2026 21:08:29 -0500 Subject: [PATCH] forgot to format --- tests/pvec/t_pvec.ml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/tests/pvec/t_pvec.ml b/tests/pvec/t_pvec.ml index 8078577d..369db564 100644 --- a/tests/pvec/t_pvec.ml +++ b/tests/pvec/t_pvec.ml @@ -266,13 +266,15 @@ module Op = struct list_small gen_x >|= fun l -> Append l, size + List.length l ); ]; - (if size < 10_000 then [ - (* flat map can explode, only do it if list isn't too big *) - ( 1, - list_size (0 -- 5) gen_x >|= fun l -> - Flat_map l, size * (1 + List.length l) ); - ] else []) - ; + (if size < 10_000 then + [ + (* flat map can explode, only do it if list isn't too big *) + ( 1, + list_size (0 -- 5) gen_x >|= fun l -> + Flat_map l, size * (1 + List.length l) ); + ] + else + []); ] in