diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-05-16 15:20:59 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-05-16 15:20:59 +0100 |
commit | cc8c139a39c6c5e095873372f6c35420d5bd1f99 (patch) | |
tree | 6a3ff4b0e47fd192d149a2f10659e25971414e68 /tests | |
parent | Changelog + sample config (diff) | |
download | synapse-cc8c139a39c6c5e095873372f6c35420d5bd1f99.tar.xz |
Lint
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/v1/test_rooms.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/rest/client/v1/test_rooms.py b/tests/rest/client/v1/test_rooms.py index ffd28772b0..8df0a07824 100644 --- a/tests/rest/client/v1/test_rooms.py +++ b/tests/rest/client/v1/test_rooms.py @@ -984,7 +984,9 @@ class PerRoomProfilesForbiddenTestCase(unittest.HomeserverTestCase): request_data = json.dumps(data) request, channel = self.make_request( "PUT", - "/_matrix/client/r0/rooms/%s/state/m.room.member/%s" % (self.room_id, self.user_id), + "/_matrix/client/r0/rooms/%s/state/m.room.member/%s" % ( + self.room_id, self.user_id, + ), request_data, access_token=self.tok, ) |