Skip to content

Commit

Permalink
Fix alcotest's own tests when using OCaml 5.2 (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate authored May 30, 2024
1 parent 7cac1a3 commit 9c262dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/e2e/strip_randomness.ml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,11 @@ let stacktrace_replace =
^^ rep1 print
^^ str "\""
^^ opt (str " (inlined)")
^^ str ", line "
^^ rep1 digit
^^ alt
[
seq [str ", line "; rep1 digit];
seq [str ", lines "; rep1 digit; char '-'; rep1 digit];
]
^^ str ", characters "
^^ rep1 digit
^^ str "-"
Expand Down

0 comments on commit 9c262dc

Please sign in to comment.