We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fedc6d6 commit 69a9cbfCopy full SHA for 69a9cbf
1 file changed
Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js
@@ -27,5 +27,5 @@ test(`should return false when numerator is greater than denominator`, () => {
27
// Case #4: numerator and/or denominator are negative numbers
28
test(`should handle negative numbers`, () => {
29
expect(isProperFraction(-1, 2)).toEqual(true);
30
- expect(isProperFraction(-5, -2)).toEqual(true);
+ expect(isProperFraction(-5, -2)).toEqual(false);
31
});
0 commit comments