Skip to content

Commit 1bb6c7e

Browse files
committed
Format document
1 parent cf43501 commit 1bb6c7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ test("returns false when numerator equals denominator", () => {
1919
expect(isProperFraction(9, 9)).toEqual(false);
2020
});
2121

22-
test("return false when numerator equals denominator when both are negative",()=>{
23-
expect(isProperFraction(-4,-4)).toEqual(false);
22+
test("return false when numerator equals denominator when both are negative", () => {
23+
expect(isProperFraction(-4, -4)).toEqual(false);
2424
});
2525

2626
test("returns false for a negative proper fraction( absolute value of the denominator is less than the numerator)", () => {
2727
expect(isProperFraction(-7, 4)).toEqual(false);
2828
});
2929
test("returns false when denominator is zero", () => {
3030
expect(isProperFraction(3, 0)).toEqual(false);
31-
});
31+
});

0 commit comments

Comments
 (0)