fix dict handling for make_request()

code_spécifique_watcha
Richard van der Hoff 4 years ago
parent 9debe657a3
commit 70c0d47989
  1. 2
      tests/server.py
  2. 3
      tests/unittest.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")

@ -429,9 +429,6 @@ class HomeserverTestCase(TestCase):
Returns:
Tuple[synapse.http.site.SynapseRequest, channel]
"""
if isinstance(content, dict):
content = json.dumps(content).encode("utf8")
return make_request(
self.reactor,
self.site,

Loading…
Cancel
Save