From e429d2207138c4117367b6ebbd0a540492081afa Mon Sep 17 00:00:00 2001 From: AlexKanj Date: Wed, 6 May 2026 13:44:55 -0400 Subject: [PATCH] small change --- tests/test_calculator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_calculator.py b/tests/test_calculator.py index c61f070..365cbc7 100644 --- a/tests/test_calculator.py +++ b/tests/test_calculator.py @@ -5,6 +5,7 @@ def test_add(): assert add(2, 3) == 5 assert add(-1, 1) == 0 + assert add(2, 2) == 4 def test_multiply():