Merge pull request #11 from jmooree30/patch-1

Update calculator.spec.js
This commit is contained in:
Cody Loyd
2018-01-16 06:37:43 -06:00
committed by GitHub
+1 -1
View File
@@ -29,7 +29,7 @@ describe('sum', function() {
expect(calculator.sum([7])).toEqual(7);
});
it('computes the sum of an array of one number', function() {
it('computes the sum of an array of two numbers', function() {
expect(calculator.sum([7,11])).toEqual(18);
});