test-api: Fix typo in message event types.

The event type for messages is "message", not "messages" as the test
(and hence the API docs Python example) reflected.
This commit is contained in:
Yago González
2018-08-01 12:39:52 +02:00
committed by Tim Abbott
parent 2b8bb2ffc6
commit 936d8c32c0

View File

@@ -397,7 +397,7 @@ def register_queue(client):
# {code_example|start}
# Register the queue
result = client.register(
event_types=['messages', 'realm_emoji']
event_types=['message', 'realm_emoji']
)
# {code_example|end}