Skip to content

Commit

Permalink
Test name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Feb 25, 2024
1 parent 4551211 commit 2a1ea1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/list-ops/list-ops-test.arr
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ fun foldl-empty():
end
end

fun foldl-direction-independet():
fun foldl-direction-independent():
check "folds (reduces) the given list from the left with a function -> direction independent function applied to non-empty list":
input = [list: 1, 2, 3, 4]
f = lam(elt, acc): elt + acc end
Expand Down Expand Up @@ -265,7 +265,7 @@ data TestRun: test(run, active) end
test(map-empty, false),
test(map-list, false),
test(foldl-empty, false),
test(foldl-direction-independet, false),
test(foldl-direction-independent, false),
test(foldl-direction-dependent, false),
test(foldr-empty, false),
test(foldr-direction-independent, false),
Expand Down

0 comments on commit 2a1ea1e

Please sign in to comment.