From 987c6377d10919ce3d06e134a05a0864c88bd048 Mon Sep 17 00:00:00 2001 From: Qoherent Date: Tue, 26 Mar 2024 14:03:01 -0400 Subject: [PATCH] New Calculator Test Progress Again --- tests/dummy_test/calculator.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tests/dummy_test/calculator.py diff --git a/tests/dummy_test/calculator.py b/tests/dummy_test/calculator.py deleted file mode 100644 index eac4e7a..0000000 --- a/tests/dummy_test/calculator.py +++ /dev/null @@ -1,14 +0,0 @@ -class Calculator: - def add(x, y): - return x + y - - def subtract(x, y): - return x - y - - def multiply(x, y): - return x * y - - def divide(x, y): - if y == 0: - return 'Cannot divide by 0' - return x * 1.0 / y \ No newline at end of file