We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f750ccf commit 189a025Copy full SHA for 189a025
1 file changed
src/core/QCheck2.mli
@@ -39,7 +39,7 @@ content will appear. *)
39
{[
40
let test =
41
QCheck2.(Test.make ~count:1000
42
- ~pp:Print.(list int)
+ ~print:Print.(list int)
43
Gen.(list int)
44
(fun l -> List.rev (List.rev l) = l));;
45
@@ -58,7 +58,7 @@ content will appear. *)
58
Test.make
59
~name:"All lists are sorted"
60
~count:10_000
61
- ~pp:Print.(list small_nat)
62
Gen.(list small_nat)
63
(fun l -> l = List.sort compare l));;
64
0 commit comments