From 1119efed2b3b6ec90b0e205bd600e49c12af593b Mon Sep 17 00:00:00 2001 From: Mark Morfe <40056285+markpogi0121@users.noreply.github.com> Date: Sun, 25 Jun 2023 02:21:01 +0000 Subject: [PATCH] changed test_add to fail --- calculator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calculator.py b/calculator.py index feefb4e3..ce3e2ef1 100644 --- a/calculator.py +++ b/calculator.py @@ -21,8 +21,8 @@ def div(a, b): if __name__ == "__main__": # Declare variable and set default values - a = 4 - b = 2 + a = 5 + b = 3 print("Sum of " + str(a) + " and " + str(b) + " is ", add(a, b)) print("Difference of " + str(a) + " and " + str(b) + " is ", sub(a, b)) print("Product of " + str(a) + " and " + str(b) + " is ", mul(a, b))