X Tutup
Skip to content

Commit 4c7cc3a

Browse files
committed
Fix test_set_game_score3 - telegram changed something in their responses
1 parent 1bb5dd2 commit 4c7cc3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def test_set_game_score3(self):
365365
chat_id=game.chat_id,
366366
message_id=game.message_id)
367367

368-
self.assertTrue('BOT_SCORE_NOT_MODIFIED' in cm.exception.message)
368+
self.assertTrue('BOT_SCORE_NOT_MODIFIED' in str(cm.exception.message).upper())
369369

370370
@flaky(3, 1)
371371
@timeout(10)

0 commit comments

Comments
 (0)
X Tutup