From 8564cb8bb7d2102ed5278fecb73315d8ad3de0ff Mon Sep 17 00:00:00 2001 From: Rohan Bhaumik Date: Mon, 6 Jan 2025 10:27:09 -0500 Subject: [PATCH] testing flake --- app/test_calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test_calculator.py b/app/test_calculator.py index e9513f43..d6736b12 100644 --- a/app/test_calculator.py +++ b/app/test_calculator.py @@ -28,4 +28,4 @@ def test_divide(): assert Calculator.divide(1.0, 2.0) == 0.5 assert Calculator.divide(0, 2.0) == 0 assert Calculator.divide(-4, 2.0) == -2.0 - # assert Calculator.divide(2.0, 0.0) == 'Cannot divide by 0' \ No newline at end of file + assert Calculator.divide(2.0, 0.0) == 'Cannot divide by 0' \ No newline at end of file