From 83048128ca813f2ba5282780296cec7bdf918b86 Mon Sep 17 00:00:00 2001 From: Anna Date: Mon, 27 Jan 2025 12:27:03 -0500 Subject: [PATCH] fix(curriculum): use author name for library project step 6 (#58367) Co-authored-by: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --- .../workshop-library-manager/67116d7584d0b469b14579c3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c3.md b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c3.md index 6485299ca6e..e7b0483e1ff 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c3.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c3.md @@ -30,7 +30,7 @@ assert.lengthOf(getBooksByAuthor, 2) Your `getBooksByAuthor` function should return an array. ```js -assert.isArray(getBooksByAuthor(library)) +assert.isArray(getBooksByAuthor(library, '')); ``` Your `getBooksByAuthor` function should use a higher order function. Ex. (`filter`, `map`, `reduce`).