From 12bb6b59c5801142ef17cf70f931332c98fcb716 Mon Sep 17 00:00:00 2001
From: Cedric Verstege <cedric.verstege@cern.ch>
Date: Thu, 27 Mar 2025 16:23:12 +0100
Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=99=E2=80=8D=E2=99=82=EF=B8=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 case-2-test/test_wizard_calculator.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/case-2-test/test_wizard_calculator.py b/case-2-test/test_wizard_calculator.py
index 69b0af8..a1a9223 100644
--- a/case-2-test/test_wizard_calculator.py
+++ b/case-2-test/test_wizard_calculator.py
@@ -24,12 +24,12 @@ def test_vanish_trolls():
 def test_brew_potions():
     assert brew_potions(2, 3) == 6
     assert brew_potions(-1, 3) == -3
-    assert brew_potions(0, 100) == 1
+    assert brew_potions(0, 100) == 0
 
 
 def test_cast_division_spell():
     assert cast_division_spell(6, 3) == 2
-    assert cast_division_spell(10, 2) == 3
+    assert cast_division_spell(10, 2) == 5
     assert cast_division_spell(7, 7) == 1
     with pytest.raises(ValueError):
         cast_division_spell(1, 0)
-- 
GitLab