Skip to content

Commit

Permalink
Reduce size of generator to speed up test
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3kk1d committed Dec 15, 2024
1 parent f90e146 commit f988005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haz3lmenhir/AST.re
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ let arb_exp_sized: QCheck.arbitrary(exp) =

let gen: Gen.t(exp) =
QCheck.Gen.sized_size(
QCheck.Gen.int_range(0, 10), // Currently only size 10
QCheck.Gen.int_range(0, 5), // Currently only size 10
QCheck.Gen.fix((self, n) => {
switch (n) {
| 0 => leaf.gen
Expand Down

0 comments on commit f988005

Please sign in to comment.