Skip to content

Commit d3eb33d

Browse files
committed
Updated the test description
1 parent a01738f commit d3eb33d

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
@@ -11,7 +11,7 @@ test(`should return false when denominator is zero`, () => {
1111
test("should return false when numerator is greater than denominator", () => {
1212
expect(isProperFraction(5, 2)).toEqual(false);
1313
});
14-
test("should return true when absolute numerator is less than absolute denominator", () => {
14+
test("should return true when |numerator| < |denominator|", () => {
1515
expect(isProperFraction(-4, 7)).toEqual(true);
1616
});
1717
test("should return false when numerator equals denominator", () => {

0 commit comments

Comments
 (0)