From 46654d5355a233410ad805786606515754fecf04 Mon Sep 17 00:00:00 2001 From: A5rocks <40616000+A5rocks@users.noreply.github.com> Date: Thu, 7 Nov 2019 10:32:40 +0900 Subject: [PATCH] fix tests --- tests/bot/bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/bot/bot.py b/tests/bot/bot.py index 17764a8..784ab77 100644 --- a/tests/bot/bot.py +++ b/tests/bot/bot.py @@ -85,19 +85,19 @@ class TestBot(TestCase): msg = Object() msg.content = '!test a' - commands = list(self.bot.get_commands_for_message(False, None, '!', msg)) + commands = list(self.bot.get_commands_for_message(False, None, ['!'], msg)) self.assertEqual(commands[0][0], self.bot._commands[1]) self.assertEqual(commands[1][0], self.bot._commands[0]) msg.content = '!test' - commands = list(self.bot.get_commands_for_message(False, None, '!', msg)) + commands = list(self.bot.get_commands_for_message(False, None, ['!'], msg)) self.assertEqual(commands[0][0], self.bot._commands[0]) msg.content = '?test a' - commands = list(self.bot.get_commands_for_message(False, None, '!', msg, ['?', ';'])) + commands = list(self.bot.get_commands_for_message(False, None, ['!', '?', ';'], msg)) self.assertEqual(commands[0][0], self.bot._commands[1]) self.assertEqual(commands[1][0], self.bot._commands[0]) msg.content = '?test' - commands = list(self.bot.get_commands_for_message(False, None, '!', msg, ['?', ';'])) + commands = list(self.bot.get_commands_for_message(False, None, ['!', '?', ';'], msg, ['?', ';'])) self.assertEqual(commands[0][0], self.bot._commands[0])