diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-11-13 23:48:25 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-11-15 23:09:03 +0000 |
commit | 70c0d47989b7794766ea957369c77d99664429c5 (patch) | |
tree | 65711c822c8c80b84944a2994e2a7b001f7ab717 /tests/server.py | |
parent | pass a Site into make_request (diff) | |
download | synapse-70c0d47989b7794766ea957369c77d99664429c5.tar.xz |
fix dict handling for make_request()
Diffstat (limited to 'tests/server.py')
-rw-r--r-- | tests/server.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/server.py b/tests/server.py index b9ccde4962..a74fb3fc67 100644 --- a/tests/server.py +++ b/tests/server.py @@ -193,6 +193,8 @@ def make_request( if not path.startswith(b"/"): path = b"/" + path + if isinstance(content, dict): + content = json.dumps(content).encode("utf8") if isinstance(content, str): content = content.encode("utf8") |