diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-03-31 17:25:10 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-03-31 17:43:58 +0100 |
commit | 26d17b9bdc0de51d5f1a7526e8ab70e7f7796e4d (patch) | |
tree | 9ab1f5206d7690f006c54e79340ba02ba2734588 /tests/storage | |
parent | Remove unused `start_background_update` (diff) | |
download | synapse-26d17b9bdc0de51d5f1a7526e8ab70e7f7796e4d.tar.xz |
Make `has_completed_background_updates` async
(Almost) everywhere that uses it is happy with an awaitable.
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_background_update.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/storage/test_background_update.py b/tests/storage/test_background_update.py index aca41eb215..e578de8acf 100644 --- a/tests/storage/test_background_update.py +++ b/tests/storage/test_background_update.py @@ -11,7 +11,9 @@ class BackgroundUpdateTestCase(unittest.HomeserverTestCase): def prepare(self, reactor, clock, homeserver): self.updates = self.hs.get_datastore().db.updates # type: BackgroundUpdater # the base test class should have run the real bg updates for us - self.assertTrue(self.updates.has_completed_background_updates()) + self.assertTrue( + self.get_success(self.updates.has_completed_background_updates()) + ) self.update_handler = Mock() self.updates.register_background_update_handler( |