Skip to content

Commit 78df6ba

Browse files
Ryan PedersenRyan Pedersen
authored andcommitted
fix mult test
1 parent a33cf5f commit 78df6ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__tests__/multiplication.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import { multiply } from '../math';
22

33
describe('Multiplication testing', () => {
4-
test('3 * 3 = 9', () => {
5-
expect(multiply(3, 3)).toBe(9);
4+
test('3 * 1 = 3', () => {
5+
expect(multiply(3, 1)).toBe(3);
66
});
77

88
test('3 * 3 = 9', () => {
99
expect(multiply(3, 3)).toBe(9);
1010
});
1111

12-
test('3 * 3 = 9', () => {
12+
test('3 * 5 = 15', () => {
1313
expect(multiply(3, 5)).toBe(15);
1414
});
1515

0 commit comments

Comments
 (0)