mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-23 13:30:34 -04:00
Add missing type hints to tests.replication. (#14987)
This commit is contained in:
parent
b275763c65
commit
156cd88eef
21 changed files with 193 additions and 149 deletions
|
@ -21,7 +21,7 @@ from tests.replication._base import BaseStreamTestCase
|
|||
|
||||
|
||||
class AccountDataStreamTestCase(BaseStreamTestCase):
|
||||
def test_update_function_room_account_data_limit(self):
|
||||
def test_update_function_room_account_data_limit(self) -> None:
|
||||
"""Test replication with many room account data updates"""
|
||||
store = self.hs.get_datastores().main
|
||||
|
||||
|
@ -67,7 +67,7 @@ class AccountDataStreamTestCase(BaseStreamTestCase):
|
|||
|
||||
self.assertEqual([], received_rows)
|
||||
|
||||
def test_update_function_global_account_data_limit(self):
|
||||
def test_update_function_global_account_data_limit(self) -> None:
|
||||
"""Test replication with many global account data updates"""
|
||||
store = self.hs.get_datastores().main
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue