diff options
author | Erik Johnston <erik@matrix.org> | 2020-10-30 10:55:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 10:55:24 +0000 |
commit | 46f4be94b410776ef3f922af2f437eb17631d2fa (patch) | |
tree | c686c30dac2bac97c2b0c05dc2c7e224748de375 /tests/server.py | |
parent | Fix optional parameter in stripped state storage method (#8688) (diff) | |
download | synapse-46f4be94b410776ef3f922af2f437eb17631d2fa.tar.xz |
Fix race for concurrent downloads of remote media. (#8682)
Fixes #6755
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 b97003fa5a..3dd2cfc072 100644 --- a/tests/server.py +++ b/tests/server.py @@ -46,7 +46,7 @@ class FakeChannel: site = attr.ib(type=Site) _reactor = attr.ib() - result = attr.ib(default=attr.Factory(dict)) + result = attr.ib(type=dict, default=attr.Factory(dict)) _producer = None @property |