From aa829a4e750c0d56a832a5b5c95806fc8f587a48 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Sat, 1 Apr 2023 12:48:04 +0300 Subject: [PATCH] Fixed the test --- tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_main.py b/tests/test_main.py index 08085e8..59d6446 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -14,7 +14,7 @@ def test_sum_wrong(): b = 2 s_wrong = 4 - assert s_wrong == sum(a, b) + assert s_wrong != sum(a, b) def test_mul(): a = 1