Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
normalize tests by removing all trailing whitespace which some OCaml …
…versions add https://ci.ocaml.org/ocaml/opam-repository/pr/15897?test=3%20Compilers Test failed for OCaml 4.02 because of no trailing whitespace after the declared variants: - | A of int - | B of int + | A of int + | B of int And failed for 4.03-4.05 with extra trailing whitespace (after _ pattern or last case?): - function | (A x, _) when x <> 0 -> 1 | (_, A x) when x <> 0 -> 1 | _ -> 2 + function | (A x, _) when x <> 0 -> 1 | (_, A x) when x <> 0 -> 1 | _ -> 2 let g x = match x with | (A x, _) when x <> 0 -> 1 | (_, A x) when x <> 0 -> 1 | (B x, _) when x <> 0 -> 1 - | _ -> 2 + | _ -> 2
- Loading branch information