botserver: Remove obsolete state_handler param from handle_message().

This commit is contained in:
derAnfaenger 2017-10-31 12:24:10 +01:00
parent aef41de37a
commit e5576388dd
2 changed files with 2 additions and 6 deletions

View file

@ -6,7 +6,7 @@ from .server_test_lib import BotServerTestCase
class BotServerTests(BotServerTestCase):
class MockMessageHandler(object):
def handle_message(self, message, bot_handler, state_handler):
def handle_message(self, message, bot_handler):
# type: (Any, Any, Any) -> None
assert message == {'key': "test message"}