diff options
author | Erik Johnston <erik@matrix.org> | 2021-09-17 15:28:39 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2021-09-17 15:28:39 +0100 |
commit | 6c0bc181398bac7cba1107dd1af7546e7dfe7436 (patch) | |
tree | b8a8b3cd87071a1c6a4b9c52080988bf6489d2fd /tests/server.py | |
parent | Newsfile (diff) | |
download | synapse-6c0bc181398bac7cba1107dd1af7546e7dfe7436.tar.xz |
Fix tests
Diffstat (limited to 'tests/server.py')
-rw-r--r-- | tests/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server.py b/tests/server.py index b861c7b866..29edce1077 100644 --- a/tests/server.py +++ b/tests/server.py @@ -268,7 +268,7 @@ def make_request( channel = FakeChannel(site, reactor, ip=client_ip) - req = request(channel) + req = request(channel, site) req.content = BytesIO(content) # Twisted expects to be at the end of the content when parsing the request. req.content.seek(SEEK_END) |