diff options
author | David Robertson <davidr@element.io> | 2021-09-30 11:04:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 11:04:40 +0100 |
commit | 3aefc7b66d9c7fb98addc71eaf5ef501a4c6a583 (patch) | |
tree | ea5fba5e1ee0bafb997e08ad8a1dc56d841b44fb /synapse/storage | |
parent | Split `event_auth.check` into two parts (#10940) (diff) | |
download | synapse-3aefc7b66d9c7fb98addc71eaf5ef501a4c6a583.tar.xz |
Refactor user directory tests (#10935)
* Pull out GetUserDirectoryTables helper * Don't rebuild the dir in tests that don't need it In #10796 I changed registering a user to add directory entries under. This means we don't have to force a directory regbuild in to tests of the user directory search. * Move test_initial to tests/storage * Add type hints to both test_user_directory files Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/user_directory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/user_directory.py b/synapse/storage/databases/main/user_directory.py index 90d65edc42..c26e3e066f 100644 --- a/synapse/storage/databases/main/user_directory.py +++ b/synapse/storage/databases/main/user_directory.py @@ -527,7 +527,7 @@ class UserDirectoryBackgroundUpdateStore(StateDeltasStore): desc="get_user_in_directory", ) - async def update_user_directory_stream_pos(self, stream_id: int) -> None: + async def update_user_directory_stream_pos(self, stream_id: Optional[int]) -> None: await self.db_pool.simple_update_one( table="user_directory_stream_pos", keyvalues={}, |