diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-15 10:20:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 10:20:19 +0100 |
commit | 4433d0151965b0c8f717ac609a6b3712ad7ef8b7 (patch) | |
tree | 0698fb60715b888f838932a0410590e6ec138e83 /tests/replication | |
parent | Use autocommit mode for single statement DB functions. (#8542) (diff) | |
parent | changelog (diff) | |
download | synapse-4433d0151965b0c8f717ac609a6b3712ad7ef8b7.tar.xz |
Merge pull request #8537 from matrix-org/rav/simplify_locally_reject_invite
Simplify `_locally_reject_invite`
Diffstat (limited to 'tests/replication')
-rw-r--r-- | tests/replication/test_federation_sender_shard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/test_federation_sender_shard.py b/tests/replication/test_federation_sender_shard.py index 9c4a9c3563..779745ae9d 100644 --- a/tests/replication/test_federation_sender_shard.py +++ b/tests/replication/test_federation_sender_shard.py @@ -226,7 +226,7 @@ class FederationSenderTestCase(BaseMultiWorkerStreamTestCase): } builder = factory.for_room_version(room_version, event_dict) - join_event = self.get_success(builder.build(prev_event_ids)) + join_event = self.get_success(builder.build(prev_event_ids, None)) self.get_success(federation.on_send_join_request(remote_server, join_event)) self.replicate() |