diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-10-13 23:06:36 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-10-13 23:06:36 +0100 |
commit | d9d86c29965ceaf92927f061375a0d7a888aea67 (patch) | |
tree | 538292119f67565517ce8be9038bf356f4404be0 /tests | |
parent | Move additional tasks to the background worker, part 4 (#8513) (diff) | |
download | synapse-d9d86c29965ceaf92927f061375a0d7a888aea67.tar.xz |
Remove redundant `token_id` parameter to create_event
this is always the same as requester.access_token_id.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_message.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/handlers/test_message.py b/tests/handlers/test_message.py index 64e28bc639..9f6f21a6e2 100644 --- a/tests/handlers/test_message.py +++ b/tests/handlers/test_message.py @@ -66,7 +66,6 @@ class EventCreationTestCase(unittest.HomeserverTestCase): "sender": self.requester.user.to_string(), "content": {"msgtype": "m.text", "body": random_string(5)}, }, - token_id=self.token_id, txn_id=txn_id, ) ) |