Skip to content

Commit 866edde

Browse files
TwoFistedJusticemybrainishuge
authored andcommitted
Correct a test message for Sum Below (#61)
Previously the message referenced an array when it should have only referred to integers.
1 parent dc128f5 commit 866edde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/part1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276
expect(sumBelow(12)).to.equal(66);
277277
});
278278

279-
it('should return the sum of an array of negative integers', function() {
279+
it('should return the sum of negative integers above given negative integer', function() {
280280
expect(sumBelow(-1)).to.equal(0);
281281
expect(sumBelow(-2)).to.equal(-1);
282282
expect(sumBelow(-6)).to.equal(-15);

0 commit comments

Comments
 (0)