diff --git a/src/functional_tests/sig_page.py b/src/functional_tests/sig_page.py index 61dd177..3374536 100644 --- a/src/functional_tests/sig_page.py +++ b/src/functional_tests/sig_page.py @@ -37,7 +37,8 @@ def _seed_earthman_sig_pile(): separately or extend this helper w. a flag.""" earthman, _ = DeckVariant.objects.get_or_create( slug="earthman", - defaults={"name": "Earthman", "card_count": 106, "is_default": True}, + defaults={"name": "Earthman", "card_count": 106, "is_default": True, + "is_polarized": True, "has_card_images": False}, ) _NAME = {11: "Maid", 12: "Jack", 13: "Queen", 14: "King"} for suit in ("BRANDS", "CROWNS", "BLADES", "GRAILS"): diff --git a/src/functional_tests/test_game_room_deck_contrib.py b/src/functional_tests/test_game_room_deck_contrib.py index e36810e..3a6e94c 100644 --- a/src/functional_tests/test_game_room_deck_contrib.py +++ b/src/functional_tests/test_game_room_deck_contrib.py @@ -195,7 +195,7 @@ class DeckInUseGameKitTest(FunctionalTest): ).click() don_btn = self.wait_for( lambda: self.browser.find_element( - By.CSS_SELECTOR, "#id_kit_fiorentine_deck .btn-equip" + By.CSS_SELECTOR, "#id_kit_tarot_deck .btn-equip" ) ) self.assertNotIn("btn-disabled", don_btn.get_attribute("class"))