Skip to content

Commit 809e11b

Browse files
fixed equal numerator and denominator jest test
1 parent 3b7e322 commit 809e11b

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
@@ -18,5 +18,5 @@ test("should return true for a negative proper fraction", () => {
1818

1919
// Case 4: Identify Equal Numerator and Denominator:
2020
test ("should return false when numerator equals denominator", () => {
21-
expect(isProperFraction(0, 5)).toEqual(false);
21+
expect(isProperFraction(3, 3)).toEqual(false);
2222
});

0 commit comments

Comments
 (0)