summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-09-27 15:23:07 +0100
committerBrendan Abolivier <babolivier@matrix.org>2019-09-27 16:57:19 +0100
commit97672c03e2e1355206eead17748912c59be49fb8 (patch)
treec19306de3fc4c0e313d5f9763c8fd8aeb44aed10
parentLint (diff)
downloadsynapse-97672c03e2e1355206eead17748912c59be49fb8.tar.xz
ok
-rw-r--r--tests/rest/client/v2_alpha/test_account.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/rest/client/v2_alpha/test_account.py b/tests/rest/client/v2_alpha/test_account.py

index f2b0c37d19..da68e4539d 100644 --- a/tests/rest/client/v2_alpha/test_account.py +++ b/tests/rest/client/v2_alpha/test_account.py
@@ -298,7 +298,9 @@ class DeactivateTestCase(unittest.HomeserverTestCase): # Make @inviter:test invite @invitee:test in a new room. room_id = self.helper.create_room_as(inviter_id, tok=inviter_tok) - self.helper.invite(room=room_id, src=inviter_id, targ=invitee_id, tok=inviter_tok) + self.helper.invite( + room=room_id, src=inviter_id, targ=invitee_id, tok=inviter_tok + ) # Make sure the invite is here. pending_invites = self.get_success(store.get_invited_rooms_for_user(invitee_id))