From 0f9f7d7a11ad74bdc6035cbe2a91587688564b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 25 Feb 2024 00:05:36 -0800 Subject: [PATCH] Test name typo (#191) --- exercises/practice/list-ops/list-ops-test.arr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/list-ops/list-ops-test.arr b/exercises/practice/list-ops/list-ops-test.arr index b61a8de..d0938df 100644 --- a/exercises/practice/list-ops/list-ops-test.arr +++ b/exercises/practice/list-ops/list-ops-test.arr @@ -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 @@ -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),