Skip to content

Commit 4648537

Browse files
committed
fix incorrect assertions
1 parent 707d4e3 commit 4648537

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ assertEquals(isProperFraction(1, 2), true);
3535
assertEquals(isProperFraction(2, 1), false);
3636
assertEquals(isProperFraction(0, 0), false);
3737
assertEquals(isProperFraction(-0, 0), false);
38-
assertEquals(isProperFraction(-5, 4), true);
39-
assertEquals(isProperFraction(-4, -5), false);
38+
assertEquals(isProperFraction(-5, 4), false);
39+
assertEquals(isProperFraction(-4, -5), true);

0 commit comments

Comments
 (0)