Skip to content

Commit bc9f361

Browse files
committed
forgot to format
1 parent 42bfe9c commit bc9f361

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

tests/pvec/t_pvec.ml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -266,13 +266,15 @@ module Op = struct
266266
list_small gen_x >|= fun l ->
267267
Append l, size + List.length l );
268268
];
269-
(if size < 10_000 then [
270-
(* flat map can explode, only do it if list isn't too big *)
271-
( 1,
272-
list_size (0 -- 5) gen_x >|= fun l ->
273-
Flat_map l, size * (1 + List.length l) );
274-
] else [])
275-
;
269+
(if size < 10_000 then
270+
[
271+
(* flat map can explode, only do it if list isn't too big *)
272+
( 1,
273+
list_size (0 -- 5) gen_x >|= fun l ->
274+
Flat_map l, size * (1 + List.length l) );
275+
]
276+
else
277+
[]);
276278
]
277279
in
278280

0 commit comments

Comments
 (0)