-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Anders Kaseorg <[email protected]>
- Loading branch information
Showing
6 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
from typing import Dict, Final, List, Tuple | ||
|
||
from typing_extensions import override | ||
|
||
from zulip_bots.bots.game_of_fifteen.game_of_fifteen import GameOfFifteenModel | ||
from zulip_bots.game_handler import BadMoveError | ||
from zulip_bots.test_lib import BotTestCase, DefaultTests | ||
|
@@ -8,6 +10,7 @@ | |
class TestGameOfFifteenBot(BotTestCase, DefaultTests): | ||
bot_name = "game_of_fifteen" | ||
|
||
@override | ||
def make_request_message( | ||
self, content: str, user: str = "[email protected]", user_name: str = "foo" | ||
) -> Dict[str, str]: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters