args are bytes

This commit is contained in:
meejah 2021-12-22 15:32:30 -07:00
parent e9aaaaccc4
commit 94b540215f

View File

@ -189,7 +189,7 @@ class RenderRoot(AsyncTestCase):
req = DummyRequest(b"")
req.fields = {}
req.args = {
"t": ["json"],
b"t": [b"json"],
}
# for some reason, DummyRequest is already finished when we