diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-04 13:04:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 13:04:27 +0100 |
commit | 6e834e94fcc97811e4cc8185e86c6b9da06eb28e (patch) | |
tree | e1b6261a6f26a96e19115ed65e3f62d0ac1bf025 /tests/rest/client/v1/utils.py | |
parent | code cleanups (diff) | |
download | synapse-6e834e94fcc97811e4cc8185e86c6b9da06eb28e.tar.xz |
Fix and refactor room and user stats (#5971)
Previously the stats were not being correctly populated.
Diffstat (limited to 'tests/rest/client/v1/utils.py')
-rw-r--r-- | tests/rest/client/v1/utils.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/rest/client/v1/utils.py b/tests/rest/client/v1/utils.py index 9915367144..cdded88b7f 100644 --- a/tests/rest/client/v1/utils.py +++ b/tests/rest/client/v1/utils.py @@ -128,8 +128,12 @@ class RestHelper(object): return channel.json_body - def send_state(self, room_id, event_type, body, tok, expect_code=200): - path = "/_matrix/client/r0/rooms/%s/state/%s" % (room_id, event_type) + def send_state(self, room_id, event_type, body, tok, expect_code=200, state_key=""): + path = "/_matrix/client/r0/rooms/%s/state/%s/%s" % ( + room_id, + event_type, + state_key, + ) if tok: path = path + "?access_token=%s" % tok |