From bbbd438b4deaed98cc3284539f659b50c09e6ea3 Mon Sep 17 00:00:00 2001 From: Gautam AK Date: Wed, 5 Jun 2024 21:31:42 +0530 Subject: [PATCH] change --- division/tests/test_divi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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