Update calculator.spec.js

This commit is contained in:
Jacob C Moore 2018-01-13 12:34:10 -05:00 committed by GitHub
parent a16fd433bd
commit e8f9821be6
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);
});