Skip to content

Commit 36150a8

Browse files
committed
Fixed spelling mistakes
1 parent 2bc76dd commit 36150a8

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
@@ -21,7 +21,7 @@ test(`should return true when numerator is less than denominator`, () => {
2121

2222
// Special case; negative numerator and positive denominatore
2323
test(` should return true when numertaor is negative and less than demoniator`, () => {
24-
expect(isproperFraction(-5, 9)).toEuqal(true);
24+
expect(isProperFraction(-5, 9)).toEqual(true);
2525
});
2626

2727
// special case: postive numerator and negative deminator
@@ -35,6 +35,6 @@ test(`should return true when both are negative`, () => {
3535
});
3636

3737
// Special case: Equal values
38-
test(`should return true when numerator and denominator are equal`, () => {
39-
expect(isProperFraction(5, 5)).toEqual(true);
38+
test(`should return false when numerator and denominator are equal`, () => {
39+
expect(isProperFraction(5, 5)).toEqual(false);
4040
});

0 commit comments

Comments
 (0)