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
commit 57b16f8cb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
});