diff --git a/division/tests/test_divi.py b/division/tests/test_divi.py index 8e43a1c..f43cf19 100644 --- a/division/tests/test_divi.py +++ b/division/tests/test_divi.py @@ -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