diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-18 16:20:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 16:20:49 -0400 |
commit | f40645e60b9cab69c953094848be61c0989a91cb (patch) | |
tree | 2ac850ce839e12a423871860bf288a313a0e1a92 /tests/storage | |
parent | Add a link to the matrix-synapse-rest-password-provider. (#8111) (diff) | |
download | synapse-f40645e60b9cab69c953094848be61c0989a91cb.tar.xz |
Convert events worker database to async/await. (#8071)
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_appservice.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/storage/test_appservice.py b/tests/storage/test_appservice.py index a425e66f37..17fbde284a 100644 --- a/tests/storage/test_appservice.py +++ b/tests/storage/test_appservice.py @@ -31,6 +31,7 @@ from synapse.storage.databases.main.appservice import ( ) from tests import unittest +from tests.test_utils import make_awaitable from tests.utils import setup_test_homeserver @@ -357,7 +358,7 @@ class ApplicationServiceTransactionStoreTestCase(unittest.TestCase): other_events = [Mock(event_id="e5"), Mock(event_id="e6")] # we aren't testing store._base stuff here, so mock this out - self.store.get_events_as_list = Mock(return_value=defer.succeed(events)) + self.store.get_events_as_list = Mock(return_value=make_awaitable(events)) yield self._insert_txn(self.as_list[1]["id"], 9, other_events) yield self._insert_txn(service.id, 10, events) |