summary refs log tree commit diff
path: root/tests/unittest.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-10-16 18:07:27 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-10-16 18:21:05 +0100
commitd174faacc74df95ad72a3ef711cd65d4637b9e1e (patch)
treeb43240da414660c87a8bb0e904cdd33c782d7d8e /tests/unittest.py
parentMerge commit '0a86850ba' into anoa/dinsic_release_1_21_x (diff)
parentRename database classes to make some sense (#8033) (diff)
downloadsynapse-d174faacc74df95ad72a3ef711cd65d4637b9e1e.tar.xz
Merge commit 'a7bdf98d0' into anoa/dinsic_release_1_21_x
* commit 'a7bdf98d0':
  Rename database classes to make some sense (#8033)
Diffstat (limited to 'tests/unittest.py')
-rw-r--r--tests/unittest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unittest.py b/tests/unittest.py

index 68d2586efd..2152c693f2 100644 --- a/tests/unittest.py +++ b/tests/unittest.py
@@ -422,8 +422,8 @@ class HomeserverTestCase(TestCase): async def run_bg_updates(): with LoggingContext("run_bg_updates", request="run_bg_updates-1"): - while not await stor.db.updates.has_completed_background_updates(): - await stor.db.updates.do_next_background_update(1) + while not await stor.db_pool.updates.has_completed_background_updates(): + await stor.db_pool.updates.do_next_background_update(1) hs = setup_test_homeserver(self.addCleanup, *args, **kwargs) stor = hs.get_datastore() @@ -571,7 +571,7 @@ class HomeserverTestCase(TestCase): Add the given event as an extremity to the room. """ self.get_success( - self.hs.get_datastore().db.simple_insert( + self.hs.get_datastore().db_pool.simple_insert( table="event_forward_extremities", values={"room_id": room_id, "event_id": event_id}, desc="test_add_extremity",