Skip to content

Commit 2deb27e

Browse files
Fix test case for isProperFraction() with zero numerator
1 parent 1af10d6 commit 2deb27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test(`should return true when numerator is zero`, () => {
77
expect(isProperFraction(0, 1)).toEqual(true);
88
});
99

10-
test(`should return true when denominator is bigger then numerator => {
10+
test(`should return true when denominator is bigger then numerator` => {
1111
expect(isProperFraction(1, 2)).toEqual(true);
1212
});
1313

0 commit comments

Comments
 (0)