0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-26 14:38:18 +02:00

Fix more logcontext leaks in tests (#4209)

This commit is contained in:
Richard van der Hoff 2018-11-27 03:01:04 +01:00 committed by Amber Brown
parent de8772a655
commit 80527b568d
2 changed files with 3 additions and 1 deletions

1
changelog.d/4209.misc Normal file
View file

@ -0,0 +1 @@
Fix logcontext leaks in EmailPusher and in tests

View file

@ -30,6 +30,7 @@ from synapse.rest.media.v1._base import FileInfo
from synapse.rest.media.v1.filepath import MediaFilePaths
from synapse.rest.media.v1.media_storage import MediaStorage
from synapse.rest.media.v1.storage_provider import FileStorageProviderBackend
from synapse.util.logcontext import make_deferred_yieldable
from synapse.util.module_loader import load_module
from tests import unittest
@ -113,7 +114,7 @@ class MediaRepoTests(unittest.HomeserverTestCase):
d = Deferred()
d.addCallback(write_to)
self.fetches.append((d, destination, path, args))
return d
return make_deferred_yieldable(d)
client = Mock()
client.get_file = get_file