From 7418711cdb9f12ad49e4fbc5f5089a3c6a0d1edb Mon Sep 17 00:00:00 2001 From: Eduardo Valle Date: Wed, 25 May 2016 22:01:46 -0600 Subject: [PATCH] fix a test description from 'add the values' to 'sum the items' --- 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 201f0df8e..e2c527405 100644 --- a/tests/app/arrays.js +++ b/tests/app/arrays.js @@ -15,7 +15,7 @@ describe('arrays', function() { expect(arraysAnswers.indexOf(a, 5)).to.eql(-1); }); - it('you should be able to add the values of an array', function() { + it('you should be able to sum the items of an array', function() { expect(arraysAnswers.sum(a)).to.eql(10); });