Re-format and re-run all acceptance tests.

This commit is contained in:
KtorZ
2024-01-20 10:43:17 +01:00
parent 9ee2d58ba3
commit b50e4ab63a
77 changed files with 449 additions and 830 deletions

View File

@@ -2,10 +2,8 @@ test foo() {
let xs =
[[1, 2], [4, 5]]
when xs is {
[[_, _], [_, _]] ->
True
_ ->
False
[[_, _], [_, _]] -> True
_ -> False
}
}
@@ -14,10 +12,8 @@ test sort_by_1() {
[[4, 3], [2, 3]]
let g =
when xs is {
[[x, xs2], [y, ys2]] ->
True
_ ->
False
[[x, xs2], [y, ys2]] -> True
_ -> False
}
g == True