Skip to content

Commit

Permalink
Fix test 3 assertion in 1-write-callbacks.js exercise (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyelcf authored Mar 21, 2024
1 parent 20072ef commit 97c01ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const check2 = checkIt('Racecar', isPalindrome);
console.assert(check2 === 'no', 'Test 2');

const check3 = checkIt('-+(*)+-', isPalindrome);
console.assert(check3 === 'yes', 'Test 3');
console.assert(check3 === 'no', 'Test 3');

// --- declare and test second callback ---

Expand Down

0 comments on commit 97c01ef

Please sign in to comment.