diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-09-27 15:23:07 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-09-27 15:23:07 +0100 |
commit | fbb8ff3088abab48bd5815a1acaeb9243ada7431 (patch) | |
tree | 02471e6317e244ba5a56988e67f83079749d635a /tests/rest | |
parent | Lint (diff) | |
download | synapse-fbb8ff3088abab48bd5815a1acaeb9243ada7431.tar.xz |
ok
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/client/v2_alpha/test_account.py | 4 |
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 434b730faf..0f51895b81 100644 --- a/tests/rest/client/v2_alpha/test_account.py +++ b/tests/rest/client/v2_alpha/test_account.py @@ -280,7 +280,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)) |