Skip to content

Commit 0f7221f

Browse files
committed
changes description for category 3.
1 parent b3bbf8a commit 0f7221f

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
@@ -22,7 +22,7 @@ test("should return true when numerator is less than denominator", () => {
2222
});
2323

2424
// Category 3: Improper fractions (numerator >= denominator)
25-
test("should return false when numerator is greater than or equal to denominator", () => {
25+
test("should return false when abs(numerator) >= abs(denominator)", () => {
2626
expect(isProperFraction(2, 1)).toBe(false);
2727
expect(isProperFraction(5, 5)).toBe(false);
2828
expect(isProperFraction(-3, 2)).toBe(false);

0 commit comments

Comments
 (0)