We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_one_emoji
OneEmojiError
1 parent ef96b89 commit 5462ebdCopy full SHA for 5462ebd
tests/test_ttt/test_entities/test_core/test_game.py
@@ -14,8 +14,8 @@
14
NotCurrentPlayerError,
15
NotPlayerError,
16
NotStandardBoardError,
17
+ OneEmojiError,
18
OnePlayerError,
- SameRandomEmojiError,
19
)
20
from ttt.entities.core.player.account import Account
21
from ttt.entities.core.player.player import Player
@@ -192,7 +192,7 @@ def test_one_emoji(
192
emoji1: Emoji,
193
standard_board: Board,
194
) -> None:
195
- with raises(SameRandomEmojiError):
+ with raises(OneEmojiError):
196
Game(
197
UUID(int=1),
198
player1,
0 commit comments