Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkhanapuri committed Jun 5, 2024
1 parent 04c9839 commit bbbd438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion division/tests/test_divi.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_divi_dividend_greaterthan_divisorfrFalse(self):
assert divi(-10, 2, False) == (-5, 0), "expecting q = -5 and x = 0"
assert divi(10, -2, False) == (-5, 0), "expecting q = -5 and x = 0"
assert divi(-10, -2, False) == (5, 0), "expecting q = 5 and x = 0"
assert divi(-8, -2, False) == (4, 0), "expecting q = 4 and x = 0"
assert divi(-8, -2, False) == (4, 0), "expecting q = 4 & x = 0"

def test_divi_dividend_greaterthan_divisor_and_x_notdivisibleby_yfrFalse(self):
# when fr = False
Expand Down

0 comments on commit bbbd438

Please sign in to comment.