From 8458dd238a748b552645bcaa2a5e9037f063c528 Mon Sep 17 00:00:00 2001 From: team3 Date: Thu, 23 Jul 2026 07:30:07 +0200 Subject: [PATCH] XP-Modell nach VOD-Daten: 1->2 kostet 2 XP, Carousels geben keine XP Co-Authored-By: Claude Fable 5 --- backend/tests/test_constants.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/tests/test_constants.py b/backend/tests/test_constants.py index 21d1013..8a07c51 100644 --- a/backend/tests/test_constants.py +++ b/backend/tests/test_constants.py @@ -19,8 +19,7 @@ def test_shop_odds_shape(c): def test_xp_reaches_max_level(c): - # Level 1 -> 2 ist gratis; to_next deckt 2->3 bis 9->10. - assert len(c["xp"]["to_next"]) == c["xp"]["max_level"] - 2 + assert len(c["xp"]["to_next"]) == c["xp"]["max_level"] - 1 assert all(x > 0 for x in c["xp"]["to_next"])