From 88de5d75a1d61c58d778edaffeb82850b994a629 Mon Sep 17 00:00:00 2001 From: Moritz Date: Thu, 16 Feb 2017 23:43:57 +0100 Subject: [PATCH] Fix typo --- tests/app/arrays.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/arrays.js b/tests/app/arrays.js index 83efc3fb8..14bf7e8d1 100644 --- a/tests/app/arrays.js +++ b/tests/app/arrays.js @@ -85,7 +85,7 @@ describe('arrays', function() { expect(result.join(' ')).to.eql('1 2 z 3 4'); }); - it('you should be able to count the occurences of an item in an array', function() { + it('you should be able to count the occurrences of an item in an array', function() { var result = arraysAnswers.count([ 1, 2, 4, 4, 3, 4, 3 ], 4); expect(result).to.eql(3);