Skip to content

Commit c723da2

Browse files
Merge pull request #42 from learn-co-curriculum/lizbur10-patch-1
Fixes errors in spec file
2 parents 91d681e + 0c54e1f commit c723da2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/index-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ describe('basic math functions', function () {
1111
})
1212

1313
it("'subtract()' is a valid function", function() {
14-
expect(add).toExist
14+
expect(subtract).toExist
1515
})
1616

17-
it("'multiple()' is a valid function", function() {
18-
expect(add).toExist
17+
it("'multiply()' is a valid function", function() {
18+
expect(multiply).toExist
1919
})
2020

2121
it("'divide()' is a valid function", function() {
22-
expect(add).toExist
22+
expect(divide).toExist
2323
})
2424

2525
it('add(a, b) adds two numbers and returns the result', function() {

0 commit comments

Comments
 (0)