Skip to content

Commit 2764640

Browse files
committed
test(unit): update strategy tests for new strategy
1 parent b6880a4 commit 2764640

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/test_strategy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_all_hand_cards_rendered(self) -> None:
140140
result = sm.render_gamestate(gamestate)
141141

142142
for i, card in enumerate(gamestate["hand"]["cards"]):
143-
assert f"**{i}**:" in result, f"Card index {i} not found"
143+
assert f"- {i}:" in result, f"Card index {i} not found"
144144
assert card["key"] in result, f"Card key {card['key']} not found"
145145

146146
def test_money_appears_in_output(self) -> None:
@@ -169,7 +169,7 @@ def test_shop_items_rendered(self) -> None:
169169
result = sm.render_gamestate(gamestate)
170170

171171
for i, item in enumerate(gamestate["shop"]["cards"]):
172-
assert f"**{i}**:" in result, f"Shop item index {i} not found"
172+
assert f"- {i}:" in result, f"Shop item index {i} not found"
173173
assert item["label"] in result, f"Shop item {item['label']} not found"
174174

175175
def test_blinds_rendered_in_blind_select(self) -> None:

0 commit comments

Comments
 (0)